Compare commits
7 commits
master
...
sgxx-custo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
38665207e0 | ||
|
|
003402a361 | ||
|
|
41ae4e61be | ||
|
|
2227785cb5 | ||
|
|
1e7d3e0457 | ||
|
|
c4d5f10b60 | ||
|
|
efe2e7cd3b |
2 changed files with 5 additions and 2 deletions
|
|
@ -33,7 +33,9 @@ void sync (void) {
|
|||
| (reg[1] &0x08? 0x80: 0x00)
|
||||
| (reg[1] &0x04? 0x100: 0x00)
|
||||
| (reg[1] &0x02? 0x200: 0x00)
|
||||
|((reg[0] &0x30) <<6);
|
||||
|((reg[0] &0x30) <<6)
|
||||
|((~reg[1] &0x01) <<12)
|
||||
;
|
||||
break;
|
||||
case 4: /* Different arrangement of register 1, PRG A20-A21 in register 0 */
|
||||
prgMaskGNROM = (reg[3] &0x10? (reg[1] &0x02? 0x03: 0x01): 0x00);
|
||||
|
|
|
|||
|
|
@ -119,7 +119,8 @@ void sync () {
|
|||
break;
|
||||
|
||||
default: // Standard VT4FFx platform
|
||||
OR = ((OneBus::reg4100[0x39] & 0x02) ? 0x0800 : 0x0000);
|
||||
OR = ((OneBus::reg4100[0x39] & 0x02) ? 0x0800 : 0x0000) |
|
||||
((OneBus::reg4100[0x39] & 0x01) ? 0x1000 : 0x0000); // Custom PCB design
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue