refactoring code style

This commit is contained in:
Gwenhael Le Moine 2024-10-19 10:58:30 +02:00
parent 5f157440e7
commit 2d798e1a02
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 190 additions and 211 deletions

399
src/cpu.c

File diff suppressed because it is too large Load diff

View file

@ -333,7 +333,7 @@ void EmulatorInit( void ); /* 2.1 */
void EmulatorExit( enum ExitOption opt ); /* 2.1 */
int CpuHaltRequest( void ); /* 3.13 */
int CpuRunRequest( void ); /* 3.13 */
int CpuHaltAllowed( void ); /* 3.13 */
bool CpuHaltAllowed( void ); /* 3.13 */
Address Disassemble( Address pc, char ob[ DISASSEMBLE_OB_SIZE ] ); /* dis.c */
void DumpCpuStatus( char ob[ DUMP_CPU_STATUS_OB_SIZE ] );