SASM #Assembly Language
[ASSEMBLY] SASM Assembly Language
[ASSEMBLY] SASM Assembly Language
2022.03.151 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 %include "io64.inc" section .text global CMAIN CMAIN: mov rbp, rsp; for correct debugging ;write your code here mov eax, 0x1234 mov rbx, 0x12345678 mov cl, 0xff mov al, 0x00 mov rax, rdx xor rax, rax ret ;section .data Colored by Color Scripter cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 ..