diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-29 17:38:56 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-11-29 17:38:56 +1100 |
commit | 44a1ea6542c812b173fb9685837c0b2fdc6a7c61 (patch) | |
tree | 5ca86b97f79c38a07d4c532be6edcc12a887cbc1 /src/cpu/instructions.h | |
parent | 8d3aaacf14997bbac177ae37ccab4618264cf29c (diff) |
bug fix apple.c:9 + inconsequential refactoring
Diffstat (limited to 'src/cpu/instructions.h')
-rw-r--r-- | src/cpu/instructions.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/cpu/instructions.h b/src/cpu/instructions.h index 33ba11d..1725d28 100644 --- a/src/cpu/instructions.h +++ b/src/cpu/instructions.h @@ -1,11 +1,8 @@ // instructions.h -#ifndef INSTRUCTIONS_H -#define INSTRUCTIONS_H +#pragma once #include"core.h" #include"6502.h" -//#include"addressing.h" - // Load and Store Instructions void fLDA(Addressing, address); @@ -83,11 +80,4 @@ void fSEI(Addressing, address); // NOP/BRK Instructions void fNOP(Addressing, address); -void fBRK(Addressing, address); - -#endif - -#ifdef ILLEGAL_INSTRUCTIONS - - -#endif
\ No newline at end of file +void fBRK(Addressing, address);
\ No newline at end of file |