diff options
author | 2013-01-14 22:02:06 +0000 | |
---|---|---|
committer | 2013-01-14 22:02:06 +0000 | |
commit | 34372f03c7fa183b6e41c0e03e898a7f9cd3d52f (patch) | |
tree | d37eedca354db19030980fde1cbb6107bcb0b4e4 /src/mess/machine/amstrad.c | |
parent | 548d5722e4661062e9d45778c7d0a507af6127cf (diff) |
Added a preliminary boolean flag to MC6845 interface structure: "show border area". If true, it will show the whole video area including border + blanking areas. [Angelo Salese]
Bulk replaced const mc6845_interface -> MC6845_INTERFACE, nw
(MESS)
SMC-777: enabled to show the border area in MC6845 interface, changed various video related function accordingly [Angelo Salese]
Diffstat (limited to 'src/mess/machine/amstrad.c')
-rw-r--r-- | src/mess/machine/amstrad.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mess/machine/amstrad.c b/src/mess/machine/amstrad.c index 327cae2f9ad..1a004c9ab39 100644 --- a/src/mess/machine/amstrad.c +++ b/src/mess/machine/amstrad.c @@ -1069,9 +1069,10 @@ UINT32 amstrad_state::screen_update_amstrad(screen_device &screen, bitmap_ind16 } -const mc6845_interface amstrad_mc6845_intf = +MC6845_INTERFACE( amstrad_mc6845_intf ) { NULL, /* screen name */ + false, /* show border area */ 16, /* number of pixels per video memory address */ NULL, /* begin_update */ NULL, /* update_row */ @@ -1084,9 +1085,10 @@ const mc6845_interface amstrad_mc6845_intf = }; -const mc6845_interface amstrad_plus_mc6845_intf = +MC6845_INTERFACE( amstrad_plus_mc6845_intf ) { NULL, /* screen name */ + false, /* show border area */ 16, /* number of pixels per video memory address */ NULL, /* begin_update */ NULL, /* update_row */ |