mirror of
https://github.com/trudnai/Steve2.git
synced 2024-12-22 06:29:15 +00:00
28 lines
625 B
C
28 lines
625 B
C
//
|
|
// main.c
|
|
// 6502
|
|
//
|
|
// Created by Tamas Rudnai on 7/14/19.
|
|
// Copyright © 2019 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
#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"
|
|
|
|
|
|
#endif // __6502_INSTRUCTIONS_H__
|