A MOS 6502 emulator written in C with a focus on speed, especially for ARM targets.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
196B

  1. #ifndef E6502_OPCODES_H_
  2. #define E6502_OPCODES_H_
  3. #include <stdio.h>
  4. int e6502_fprintf_instr(FILE* file,
  5. uint8_t opcode, uint8_t* operand);
  6. #endif // E6502_OPCODES_H_