Continued to lesson 15
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,21 @@
|
||||
|
||||
; %include '../lib/fl.asm' ; local
|
||||
%include 'lib/fl.asm' ; build.sh
|
||||
|
||||
SECTION .data
|
||||
msg1 db ' remainder '
|
||||
|
||||
SECTION .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 90
|
||||
mov ebx, 9
|
||||
div ebx
|
||||
call iprint
|
||||
mov eax, msg1
|
||||
call sprint
|
||||
mov eax, edx
|
||||
call iprintLF
|
||||
|
||||
call quit
|
||||
Binary file not shown.
Reference in New Issue
Block a user