use bool and step_instruction doesn't need to return anything

This commit is contained in:
Gwenhael Le Moine 2024-06-11 12:33:35 +02:00
parent 0839613c67
commit d26eeebbc7
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
2 changed files with 349 additions and 353 deletions

File diff suppressed because it is too large Load diff

View file

@ -39,7 +39,7 @@ extern long read_nibbles( long addr, int len ); /* used in debugger.c */
/* emu_emulate.c */
/*****************/
extern void load_addr( word_20* dat, long addr, int n ); /* used in debugger.c */
extern int step_instruction( void ); /* used in debugger.c */
extern void step_instruction( void ); /* used in debugger.c */
extern void schedule( void ); /* used in debugger.c */
#endif /* !_EMULATOR_FOR_DEBUGGER_H */