diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-27 18:51:50 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-27 18:51:50 +1100 |
commit | c6da616d018ecfc5a26686e88ab520b54b7fa6ed (patch) | |
tree | 033986d0f384461267836ff179e14b268a9cf015 /src/cpu/table.c | |
parent | 521edc94f65928d3ecbe94ecac132f8d3668be41 (diff) |
revamped build; minor pointless changes
Diffstat (limited to 'src/cpu/table.c')
-rw-r--r-- | src/cpu/table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/table.c b/src/cpu/table.c index 0f70889..fb419d2 100644 --- a/src/cpu/table.c +++ b/src/cpu/table.c @@ -16,6 +16,7 @@ void callInstructionTable(int i, address val){ uintptr_t a = getInstructionTableFunction(i); memcpy(&func, a, sizeof(uintptr_t)); Addressing* r = (InstructionTable + ((sizeof(uintptr_t)*256) + (sizeof(Addressing) * i))); + idata = fAddress(*r, val); func(*r, val); } |