mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-21 09:19:31 +08:00
17 lines
177 B
NASM
17 lines
177 B
NASM
; Test of non-power-of-2 alignment
|
|
|
|
bits 32
|
|
|
|
inc eax
|
|
inc eax
|
|
align 13
|
|
inc eax
|
|
inc eax
|
|
align 13
|
|
inc eax
|
|
inc eax
|
|
align 13
|
|
align 13 ;should do nothing
|
|
inc eax
|
|
inc eax
|