diff options
author | 2018-12-29 05:53:50 +1100 | |
---|---|---|
committer | 2018-12-29 05:53:50 +1100 | |
commit | f1f0591f43f381123e8d9ec20c52eb7c0c332c79 (patch) | |
tree | 97c8dd30a6ea292c3189f372b8103a2e303c0b2d /src/devices/video/i8244.h | |
parent | 65bfb2654f0c73235f114e9145c766245bed9790 (diff) |
Start cleaning up palette configuration:
* Basically, initialisers go in the constructor arguments, and things for setting format go in set_format.
* Initialisation patterns can be specified with an enum discriminator or with a FUNC and optionally a tag.
* Formats can be specified with an enum discriminator or a size and function pointer.
* You must always supply the number of entries when setting the format.
* When initislising with a paletter initialisation member, you can specify the entries and indirecte entries together.
* The palette_device now has a standard constructor, so use .set_entries if you are specifying entry count with no format/initialisation.
* Also killed an overload on delegates that wasn't being useful.
Diffstat (limited to 'src/devices/video/i8244.h')
-rw-r--r-- | src/devices/video/i8244.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/i8244.h b/src/devices/video/i8244.h index 0e8fd60159e..0bf0174cdba 100644 --- a/src/devices/video/i8244.h +++ b/src/devices/video/i8244.h @@ -58,7 +58,7 @@ public: DECLARE_WRITE8_MEMBER(write); DECLARE_READ_LINE_MEMBER(vblank); DECLARE_READ_LINE_MEMBER(hblank); - DECLARE_PALETTE_INIT(i8244); + void i8244_palette(palette_device &palette) const; uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |