mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Merge pull request #4851 from cam900/patch-88
tc0480scp.cpp : Default mem_mask values
This commit is contained in:
commit
3d9baae4f4
@ -35,9 +35,9 @@ public:
|
|||||||
may be needed when tilemaps use a palette area from sprites. */
|
may be needed when tilemaps use a palette area from sprites. */
|
||||||
|
|
||||||
u16 ram_r(offs_t offset);
|
u16 ram_r(offs_t offset);
|
||||||
void ram_w(offs_t offset, u16 data, u16 mem_mask);
|
void ram_w(offs_t offset, u16 data, u16 mem_mask = ~0);
|
||||||
u16 ctrl_r(offs_t offset);
|
u16 ctrl_r(offs_t offset);
|
||||||
void ctrl_w(offs_t offset, u16 data, u16 mem_mask);
|
void ctrl_w(offs_t offset, u16 data, u16 mem_mask = ~0);
|
||||||
|
|
||||||
void tilemap_update();
|
void tilemap_update();
|
||||||
void tilemap_draw(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int layer, int flags, u32 priority);
|
void tilemap_draw(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int layer, int flags, u32 priority);
|
||||||
|
Loading…
Reference in New Issue
Block a user