Quote:
|
Originally Posted by gizmo I believe your problem is that you are trying to print the string pointed at by MESSAGE, but that string is not terminated by the '$' symbol. As a consequence, your subsequent calls to int 21 don't do anything useful. But that is just a guess. It's been quite some time since I messed with x86 assembly. |
Ya you're right. x86 assembly keeps me sane while Excel is updating cells (yes, really, it is that bad). At least in NASM, losing the $ from the end of the "MESSAGE DB 'ECE4210/ECE7210 LAB1 PART 3',0DH,0AH" line causes it to stall there.