123456789101112131415161718192021 |
- .file "test_3.asm"
- .data
- .byte 0x12
- .byte 0x34
- .word 0x1234
- .word 0x56
- .long 0x1234
- .quad 0xabcd
- .word 0x1234
- .fill 4, 2, 0xabcd
- .skip 8, 0x12
- .space 16, 0x34
- .text
- .global _start
- _start:
- movq $60, %rax
- movq $0, %rdi
- syscall
|