mirror of
https://github.com/ivanizag/izapple2.git
synced 2025-03-21 14:29:39 +00:00
Enable vidHD only on 128kb models
This commit is contained in:
parent
0a1751cc77
commit
e833d71fad
@ -21,7 +21,7 @@ Portable emulator of an Apple II+ or //e. Written in Go.
|
|||||||
- ThunderClock Plus real time clock
|
- ThunderClock Plus real time clock
|
||||||
- Bootable hard disk card
|
- Bootable hard disk card
|
||||||
- Apple //e 80 columns with 64Kb extra RAM
|
- Apple //e 80 columns with 64Kb extra RAM
|
||||||
- VidHd, limited to the ROM signature and SHR as used by Total Replay
|
- VidHd, limited to the ROM signature and SHR as used by Total Replay, only for //e models with 128Kb
|
||||||
- FASTChip, limited to what Total Replay needs to set and clear fast mode
|
- FASTChip, limited to what Total Replay needs to set and clear fast mode
|
||||||
- Graphic modes:
|
- Graphic modes:
|
||||||
- Text 40 columns
|
- Text 40 columns
|
||||||
@ -170,7 +170,7 @@ Only valid on SDL mode
|
|||||||
-traceSS
|
-traceSS
|
||||||
dump to the console the sofswitches calls
|
dump to the console the sofswitches calls
|
||||||
-vidHDSlot int
|
-vidHDSlot int
|
||||||
slot for the VidHD card, -1 for none (default 2)
|
slot for the VidHD card, only for //e models. -1 for none (default 2)
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -52,7 +52,7 @@ func MainApple() *Apple2 {
|
|||||||
vidHDCardSlot := flag.Int(
|
vidHDCardSlot := flag.Int(
|
||||||
"vidHDSlot",
|
"vidHDSlot",
|
||||||
2,
|
2,
|
||||||
"slot for the VidHD card, -1 for none")
|
"slot for the VidHD card, only for //e models. -1 for none")
|
||||||
fastChipCardSlot := flag.Int(
|
fastChipCardSlot := flag.Int(
|
||||||
"fastChipSlot",
|
"fastChipSlot",
|
||||||
3,
|
3,
|
||||||
@ -112,6 +112,7 @@ func MainApple() *Apple2 {
|
|||||||
*charRomFile = "<internal>/Apple2rev7CharGen.rom"
|
*charRomFile = "<internal>/Apple2rev7CharGen.rom"
|
||||||
}
|
}
|
||||||
charGenMap = charGenColumnsMap2Plus
|
charGenMap = charGenColumnsMap2Plus
|
||||||
|
*vidHDCardSlot = -1
|
||||||
|
|
||||||
case "2e":
|
case "2e":
|
||||||
a = newApple2e()
|
a = newApple2e()
|
||||||
@ -149,6 +150,7 @@ func MainApple() *Apple2 {
|
|||||||
initialCharGenPage = 1
|
initialCharGenPage = 1
|
||||||
}
|
}
|
||||||
charGenMap = charGenColumnsMapBase64a
|
charGenMap = charGenColumnsMapBase64a
|
||||||
|
*vidHDCardSlot = -1
|
||||||
|
|
||||||
default:
|
default:
|
||||||
panic("Model not supported")
|
panic("Model not supported")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user