// // main.c // 6502 // // Created by Tamas Rudnai on 7/14/19. // Copyright © 2019, 2020 Tamas Rudnai. All rights reserved. // // This file is part of Steve ][ -- The Apple ][ Emulator. // // Steve ][ is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Steve ][ is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Steve ][. If not, see . // #ifndef __6502_INSTRUCTIONS_H__ #define __6502_INSTRUCTIONS_H__ #include "6502_instr_load_store.h" #include "6502_instr_arithmetic.h" #include "6502_instr_inc_dec.h" #include "6502_instr_shift_rotate.h" #include "6502_instr_logic.h" #include "6502_instr_compare_test.h" #include "6502_instr_branch.h" #include "6502_instr_transfer.h" #include "6502_instr_stack.h" #include "6502_instr_call_ret_jump.h" #include "6502_instr_set_clr.h" #include "6502_instr_misc.h" #include "6502_instr_undoc.h" #endif // __6502_INSTRUCTIONS_H__