Added Packard Bell PB520r emulation.
This commit is contained in:
parent
2c985a6c79
commit
cc60e2b2c5
19 changed files with 146 additions and 10 deletions
|
|
@ -1606,6 +1606,10 @@ static void *gd5434_init()
|
|||
{
|
||||
return cl_init(CL_TYPE_GD5434, "gd5434.bin");
|
||||
}
|
||||
static void *gd5434_pb520r_init()
|
||||
{
|
||||
return cl_init(CL_TYPE_GD5434, "pb520r/gd5434.bin");
|
||||
}
|
||||
|
||||
static int gd5429_available()
|
||||
{
|
||||
|
|
@ -1754,3 +1758,16 @@ device_t gd5434_device =
|
|||
gd5429_add_status_info,
|
||||
gd5434_config
|
||||
};
|
||||
|
||||
device_t gd5434_pb520r_device =
|
||||
{
|
||||
"Cirrus Logic GD5434 (PB520r)",
|
||||
0,
|
||||
gd5434_pb520r_init,
|
||||
gd5429_close,
|
||||
gd5434_available,
|
||||
gd5429_speed_changed,
|
||||
gd5429_force_redraw,
|
||||
gd5429_add_status_info,
|
||||
gd5434_config
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue