A MOS 6502 emulator written in C with a focus on speed, especially for ARM targets.
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #ifndef E6502_OPCODES_H_
- #define E6502_OPCODES_H_
-
- #include <stdio.h>
-
-
- int e6502_fprintf_instr(FILE* file,
- uint8_t opcode, uint8_t* operand);
-
-
- #endif // E6502_OPCODES_H_
|