diff options
-rw-r--r-- | sim/h8300/ChangeLog | 2 | ||||
-rw-r--r-- | sim/h8300/compile.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index e4cd0d4..72db3d8 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,5 +1,7 @@ Thu Jul 15 09:59:01 1993 Doug Evans (dje@canuck.cygnus.com) + * compile.c: Reset HMODE back to zero (accidently set it to 1). + * run.c (main): If h8/300h binary detected, call set_h8300h. * compile.c (sim_resume): Fix O_NEG insn. diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index b18f7ea..e98c25b 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -73,7 +73,7 @@ int debug; static cpu_state_type cpu; -int HMODE = 1; +int HMODE = 0; static int |