summaryrefslogtreecommitdiff
path: root/modules/parsers/nasm/tests/syntax-err.asm
blob: f36010a7d6da6bb775205a33fc89469ae1fd9032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
global crc32
crc32: resd 1
cli:
mov ax, 5%
mov ax, %
mov ax, ~
mov ax, +
mov ax, -
mov ax, (
mov ax, )
ret 5%
ret %
ret ~
ret +
ret -
ret (
ret )