diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-07 02:19:48 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-07 02:19:48 +1100 |
commit | 98dd41e2ce7dedb81ab91342eed29da017006ea4 (patch) | |
tree | de5efd1f899815dcad218accda405873687cbaf1 /src/cpu/addressing.h | |
parent | 5bb10fc4121a8c8434dcd367f2e611599a11e12e (diff) |
about to rip apart my code, so saving progress
Diffstat (limited to 'src/cpu/addressing.h')
-rw-r--r-- | src/cpu/addressing.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/addressing.h b/src/cpu/addressing.h index e2c882e..790b912 100644 --- a/src/cpu/addressing.h +++ b/src/cpu/addressing.h @@ -12,8 +12,8 @@ // For a given addressing mode and opcode, return data about the instruction. -AddData fAddress (Addressing mode, short x ); -address fAddressGetAddress (Addressing mode, short x ); +AddData fAddress (Addressing mode, address x ); +address fAddressGetAddress (Addressing mode, address x ); int fAddressGetLength (Addressing mode ); -byte fAddressGetValue (Addressing mode, short x, address addr); -int fAddressGetCycles (Addressing mode, short x, address addr);
\ No newline at end of file +byte fAddressGetValue (Addressing mode, address x, address addr); +int fAddressGetCycles (Addressing mode, address x, address addr); |