summaryrefslogtreecommitdiff
path: root/tests/nasm/multisect.asm
blob: 92ad4790ca6441b97d173eb701c7e95ef75f13dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[section .text]
aaa
aam
div ax
imul eax

[section .data]
db 'hello',0

[section .text]
div al
bswap eax

[section .bss]
resb 25

[section .data]
db 'bye!',0

[section .text]
mov ax, 5