A MOS 6502 emulator written in C with a focus on speed, especially for ARM targets.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
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_