Added emulation of Packard Bell PB410A, along with the built-in Headland HT216-32 video.
This commit is contained in:
parent
cc4118fca0
commit
35962551dd
18 changed files with 1178 additions and 13 deletions
|
|
@ -314,6 +314,7 @@ void loadnvr()
|
|||
case ROM_IBMPS2_M70_TYPE3: f = nvrfopen("ibmps2_m70_type3.nvr","rb"); break;
|
||||
case ROM_IBMPS2_M70_TYPE4: f = nvrfopen("ibmps2_m70_type4.nvr","rb"); break;
|
||||
case ROM_TULIP_TC7: f = nvrfopen("tulip_tc7.nvr", "rb"); break;
|
||||
case ROM_PB410A: f = nvrfopen("pb410a.nvr", "rb"); nvrmask = 127; break;
|
||||
|
||||
default: return;
|
||||
}
|
||||
|
|
@ -410,6 +411,7 @@ void savenvr()
|
|||
case ROM_IBMPS2_M70_TYPE3: f = nvrfopen("ibmps2_m70_type3.nvr","wb"); break;
|
||||
case ROM_IBMPS2_M70_TYPE4: f = nvrfopen("ibmps2_m70_type4.nvr","wb"); break;
|
||||
case ROM_TULIP_TC7: f = nvrfopen("tulip_tc7.nvr", "wb"); break;
|
||||
case ROM_PB410A: f = nvrfopen("pb410a.nvr", "wb"); break;
|
||||
|
||||
default: return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue