Added the action part for I mode

This commit is contained in:
niravthakkar 2016-12-14 13:24:44 +05:30 committed by GitHub
parent 52ab0596da
commit cdb31062b7

View File

@ -39,7 +39,7 @@ local wline, werror, wfatal, wwarn
local action_names = {
"STOP", "SECTION", "ESC", "REL_EXT",
"ALIGN", "REL_LG", "LABEL_LG",
"REL_PC", "LABEL_PC", "DISP12", "DISP20", "IMM16", "IMM32", "LEN8R","LEN4HR","LEN4LR",
"REL_PC", "LABEL_PC", "DISP12", "DISP20", "IMM8", "IMM16", "IMM32", "LEN8R","LEN4HR","LEN4LR",
}
-- Maximum number of section buffer positions for dasm_put().
@ -307,6 +307,10 @@ local function is_int16(num)
return -32768 <= num and num < 32768
end
local function is_int8(num)
return -128 <= num and num < 128
end
-- Split a memory operand of the form d(b) or d(x,b) into d, x and b.
-- If x is not specified then it is 0.
local function split_memop(arg)