mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-17 17:19:35 +08:00
Fix order of token arguments
Order of token arguments was reversed, but tokens.dat wasn't updated accordingly. Fix.
This commit is contained in:
parent
f5843c614a
commit
6fa5c358b5
@ -2,7 +2,7 @@
|
||||
# Tokens other than instructions and registers
|
||||
#
|
||||
|
||||
% TOKEN_PREFIX, P_*, 0
|
||||
% TOKEN_PREFIX, 0, P_*
|
||||
a16
|
||||
a32
|
||||
lock
|
||||
@ -15,7 +15,7 @@ repnz
|
||||
repz
|
||||
times
|
||||
|
||||
% TOKEN_SPECIAL, S_*, 0
|
||||
% TOKEN_SPECIAL, 0, S_*
|
||||
abs
|
||||
byte
|
||||
dword
|
||||
|
Loading…
Reference in New Issue
Block a user