mirror of
https://github.com/ctm/syn68k.git
synced 2024-12-01 16:51:18 +00:00
14 lines
337 B
C
14 lines
337 B
C
|
#ifndef _diagnostics_h_
|
||
|
#define _diagnostics_h_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "syn68k_private.h"
|
||
|
#include "block.h"
|
||
|
|
||
|
extern void print_cc_bits (FILE *stream, int bits);
|
||
|
extern void hexdump (const uint16 *addr, int num_words);
|
||
|
extern void dump_cpu_state (void);
|
||
|
extern Block *which_block (uint16 *code);
|
||
|
|
||
|
#endif /* Not _diagnostics_h_ */
|