mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
another fix typo
This commit is contained in:
parent
1dfeb3ba53
commit
f14541031b
@ -222,10 +222,10 @@ void cia_config(int which, const cia6526_interface *intf)
|
||||
state_save_register_item("6526cia", which, cia->serial);
|
||||
}
|
||||
|
||||
void cia_set_port_mask_value(int which, int p, int data)
|
||||
void cia_set_port_mask_value(int which, int port, int data)
|
||||
{
|
||||
cia_state *cia = &cia_array[which];
|
||||
cia->port[p].mask_value = data;
|
||||
cia->port[port].mask_value = data;
|
||||
}
|
||||
|
||||
void cia_reset(void)
|
||||
|
@ -34,7 +34,7 @@ struct _cia6526_interface
|
||||
/* configuration and reset */
|
||||
void cia_config(int which, const cia6526_interface *intf);
|
||||
void cia_reset(void);
|
||||
void cia_set_port_mask_value(int which, int p, int data);
|
||||
void cia_set_port_mask_value(int which, int port, int data);
|
||||
|
||||
/* reading and writing */
|
||||
UINT8 cia_read(int which, offs_t offset);
|
||||
|
Loading…
Reference in New Issue
Block a user