mirror of
https://github.com/tailix/loadwarka.git
synced 2024-11-11 13:50:54 -05:00
Replace "jmp" with "ret"
This commit is contained in:
parent
9ec39b3871
commit
2d8836ccdc
2 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ print_char:
|
|||
mov $0x0e, %ah
|
||||
mov $0x0001, %bx
|
||||
int $0x10
|
||||
jmp do_ret
|
||||
ret
|
||||
|
||||
// SI - string pointer
|
||||
print_str:
|
||||
|
|
|
@ -51,7 +51,7 @@ print_char:
|
|||
mov $0x0E, %ah
|
||||
mov $0x0001, %bx
|
||||
int $0x10
|
||||
jmp do_ret
|
||||
ret
|
||||
|
||||
// SI - string pointer
|
||||
print_str:
|
||||
|
|
Loading…
Reference in a new issue