mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
(MESS) pc_vga: default DAC mask to 0xff, indiana now shows text [Carl]
This commit is contained in:
parent
62855b919a
commit
1da112a853
@ -106,7 +106,7 @@ enum
|
||||
***************************************************************************/
|
||||
|
||||
#define LOG_ACCESSES 0
|
||||
#define LOG_REGISTERS 0
|
||||
#define LOG_REGISTERS 1
|
||||
|
||||
#define LOG_8514 1
|
||||
|
||||
@ -1990,6 +1990,8 @@ void vga_device::device_reset()
|
||||
|
||||
/* TODO: real defaults */
|
||||
vga.crtc.line_compare = 0x3ff;
|
||||
/* indiana.c boot PROM doesn't set this and assumes it's 0xff */
|
||||
vga.dac.mask = 0xff;
|
||||
}
|
||||
|
||||
READ8_MEMBER(vga_device::mem_r)
|
||||
|
Loading…
Reference in New Issue
Block a user