mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +03:00
that would help (nw)
This commit is contained in:
parent
ac6053ecb0
commit
b47259fa08
@ -17,9 +17,10 @@
|
|||||||
|
|
||||||
class sbus_cgsix_device : public device_t, public device_sbus_card_interface
|
class sbus_cgsix_device : public device_t, public device_sbus_card_interface
|
||||||
{
|
{
|
||||||
protected:
|
public:
|
||||||
static constexpr feature_type imperfect_features() { return feature::GRAPHICS; }
|
static constexpr feature_type imperfect_features() { return feature::GRAPHICS; }
|
||||||
|
|
||||||
|
protected:
|
||||||
// construction/destruction
|
// construction/destruction
|
||||||
sbus_cgsix_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const uint32_t vram_size)
|
sbus_cgsix_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const uint32_t vram_size)
|
||||||
: sbus_cgsix_device(mconfig, type, tag, owner, clock)
|
: sbus_cgsix_device(mconfig, type, tag, owner, clock)
|
||||||
@ -44,7 +45,6 @@ protected:
|
|||||||
DECLARE_READ32_MEMBER(fbc_r);
|
DECLARE_READ32_MEMBER(fbc_r);
|
||||||
DECLARE_WRITE32_MEMBER(fbc_w);
|
DECLARE_WRITE32_MEMBER(fbc_w);
|
||||||
|
|
||||||
protected:
|
|
||||||
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||||
uint8_t perform_rasterop(uint8_t src, uint8_t dst);
|
uint8_t perform_rasterop(uint8_t src, uint8_t dst);
|
||||||
void handle_font_poke();
|
void handle_font_poke();
|
||||||
|
Loading…
Reference in New Issue
Block a user