mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-06 04:59:43 +00:00
e0ed77af58
- assemble is now working - disassemble fails - Hard refactoring in massemble loop - Labels are now just 'text:' - Comments are supportes with '#' char - Labels are used as EQU directives - Added test program 'make test' in libr/asm/t
16 lines
110 B
NASM
16 lines
110 B
NASM
.org 0
|
|
|
|
push ebp
|
|
|
|
sopa:
|
|
#jeje
|
|
|
|
mov ebp, esp
|
|
end_loop:
|
|
sub esp, 192
|
|
call sopa
|
|
jz end_loop
|
|
|
|
nop
|
|
mov eax,44
|