mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
tms9928a.c: Removed some unused functions. (nw)
This commit is contained in:
parent
c61ca59312
commit
5dc7ae98ac
@ -227,11 +227,6 @@ static void TMS9928A_start (running_machine &machine, const TMS9928a_interface *
|
||||
state_save_register_item_pointer(machine, "tms9928a", NULL, 0, tms.vMem, intf->vram);
|
||||
}
|
||||
|
||||
const rectangle *TMS9928A_get_visarea (void)
|
||||
{
|
||||
return &tms.visarea;
|
||||
}
|
||||
|
||||
|
||||
void TMS9928A_post_load (running_machine &machine) {
|
||||
int i;
|
||||
@ -377,12 +372,6 @@ static void change_register (running_machine &machine, int reg, UINT8 val) {
|
||||
** Interface functions
|
||||
*/
|
||||
|
||||
#ifdef UNUSED_FUNCTION
|
||||
void TMS9928A_int_callback (void (*callback)(int)) {
|
||||
tms.INTCallback = callback;
|
||||
}
|
||||
#endif
|
||||
|
||||
void TMS9928A_set_spriteslimit (int limit) {
|
||||
tms.LimitSprites = limit;
|
||||
}
|
||||
|
@ -54,11 +54,6 @@ typedef struct TMS9928a_interface
|
||||
*/
|
||||
extern void TMS9928A_configure (const TMS9928a_interface *intf);
|
||||
|
||||
/*
|
||||
** visible area query
|
||||
*/
|
||||
extern const rectangle *TMS9928A_get_visarea (void);
|
||||
|
||||
/*
|
||||
** reset function
|
||||
*/
|
||||
@ -84,12 +79,6 @@ extern SCREEN_UPDATE( tms9928a );
|
||||
*/
|
||||
int TMS9928A_interrupt (running_machine &machine);
|
||||
|
||||
/*
|
||||
** The parameter is a function pointer. This function is called whenever
|
||||
** the state of the INT output of the TMS9918A changes.
|
||||
*/
|
||||
/*void TMS9928A_int_callback (void (*callback)(int));*/
|
||||
|
||||
/*
|
||||
** Set display of illegal sprites on or off
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user