Go to newline afterwards.

This commit is contained in:
Nicolás Ortega Froysa 2018-02-23 17:38:30 +01:00
parent 1d03db4a71
commit acc3f782b4
No known key found for this signature in database
GPG Key ID: FEC70E3BAE2E69BF

View File

@ -23,5 +23,9 @@ print_string_start:
jmp print_string_start ; go back to beginning
print_string_end:
mov al, 0xA
int 0x10
mov al, 0xD
int 0x10
popa ; return the state of all the registers
ret