I'm trying to retrieve the current (system) date and print it out as a formatted string: mm/dd/yyyy.
Here's what I have:
I'm thinking I need to use an offset as I'm getting the graphics characters instead of the ASCII printable numbers ... but it's been a long, long time since I did assembler so thought I'd check before heading down the garden path.
Thanks in advance!
Tom
"My mind is like a steel whatchamacallit ...
Here's what I have:
Code:
push ax
mov ax,2c00h
int 21h
mov al,dh
mov ah,0eh
int 10h
...
I'm thinking I need to use an offset as I'm getting the graphics characters instead of the ASCII printable numbers ... but it's been a long, long time since I did assembler so thought I'd check before heading down the garden path.
Thanks in advance!
Tom
"My mind is like a steel whatchamacallit ...