NESe (pronounced "Nessie") is a NES emulator based on the e6502 emulator, also written in C with a focus on speed and portability for use on embedded platforms, especially ARM.
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.

14 lines
272B

  1. #ifndef F6502_OPCODES_H_
  2. #define F6502_OPCODES_H_
  3. #include <stdio.h>
  4. int f6502_fprintf_instr(FILE* file,
  5. uint8_t opcode, uint8_t* operand);
  6. void f6502_dump_instr(f6502_Core* core, uint8_t opcode, uint8_t* operand);
  7. #endif // F6502_OPCODES_H_