RosettaCodeData/Task/Roman-numerals-Encode/8086-Assembly/roman-numerals-encode-3.8086

21 lines
236 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
pushall macro
push ax
push bx
push cx
push dx
push ds
push es
push di
;I forgot SI in this macro, but once you add it in the code stops working! So I left it out.
endm
popall macro
pop di
pop es
pop ds
pop dx
pop cx
pop bx
pop ax
endm