diff options
Diffstat (limited to 'sim/rl78/cpu.h')
-rw-r--r-- | sim/rl78/cpu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sim/rl78/cpu.h b/sim/rl78/cpu.h index e2457bb..0e10db9 100644 --- a/sim/rl78/cpu.h +++ b/sim/rl78/cpu.h @@ -46,7 +46,7 @@ extern const char * const reg_names[]; void init_cpu (void); void set_flags (int mask, int newbits); -void set_c (int c); +void set_c (int); int get_c (void); const char *bits (int v, int b); @@ -97,4 +97,7 @@ extern int timer_enabled; extern void dump_counts_per_insn (const char * filename); extern unsigned int counts_per_insn[0x100000]; +extern int rl78_g10_mode; +extern int g13_multiply; + #endif |