diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2002-12-26 05:44:46 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2002-12-26 05:44:46 +0000 |
commit | d0fe2f7e746923b38bffd2578fa58e7ea8468461 (patch) | |
tree | 3164969cc53e4bd88d45e85c9f531fb7195df523 /sim/h8300/inst.h | |
parent | f109f54a377162e84c9e4ffb8c5264d852ea982f (diff) | |
download | gdb-d0fe2f7e746923b38bffd2578fa58e7ea8468461.zip gdb-d0fe2f7e746923b38bffd2578fa58e7ea8468461.tar.gz gdb-d0fe2f7e746923b38bffd2578fa58e7ea8468461.tar.bz2 |
* compile.c: Fix formatting.
* inst.h: Likewise.
Diffstat (limited to 'sim/h8300/inst.h')
-rw-r--r-- | sim/h8300/inst.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sim/h8300/inst.h b/sim/h8300/inst.h index bcf8e4a..7f6e400 100644 --- a/sim/h8300/inst.h +++ b/sim/h8300/inst.h @@ -14,14 +14,13 @@ outside of main memory refers to the eightbit area (in theory, this can only happen when simulating H8/300H programs). We make no attempt to catch overlapping addresses, wrapped addresses, etc etc. */ -#define H8300_MSIZE (1<<16) +#define H8300_MSIZE (1 << 16) /* avolkov: Next 2 macros are ugly for any workstation, but while they're work. - Memory size MUST be configurable. - */ -#define H8300H_MSIZE (1<<18) -#define H8300S_MSIZE (1<<24) + Memory size MUST be configurable. */ +#define H8300H_MSIZE (1 << 18) +#define H8300S_MSIZE (1 << 24) #define CSIZE 1000 |