So I have this subroutine:
proc print_msg msgptr:word
mov dx, [msgptr]
mov ah, 9h
int 21h
ret
endp
I try to call it using
call print_msg, offset msg_description
but on this line, tasm says "extra characters on line". How to fix this? Thank you.
call
only takes a single operand, the address of the subroutine. You need to pass arguments by hand, according to whatever conventiontasm
uses if you declare aproc
like you did. Assuming it uses the usual stack based convention, you will need something like: