Skip to content

Instantly share code, notes, and snippets.

@jsdf
Created May 2, 2020 21:17
Show Gist options
  • Save jsdf/c14fdd5fbabf588a011c1dd703d91553 to your computer and use it in GitHub Desktop.
Save jsdf/c14fdd5fbabf588a011c1dd703d91553 to your computer and use it in GitHub Desktop.
pce emulator configuration file disk example
sony {
enable = 1
# The floppy disk insertion delay. Set this to:
# 0: never automatically insert the disk
# 1: have the disk inserted immediately on startup.
# The System will then either boot from the disk or
# eject it.
# x: delay insertion by x (emulated) seconds.
insert_delay = 15
# The insertion delay can be set for each floppy disk
# drive individually.
#insert_delay_1 = 1
#insert_delay_2 = 15
#insert_delay_3 = 15
}
scsi {
device {
# The SCSI ID
id = 6
# The drive number. This number is used to identify
# a "disk" section. The number itself is meaningless.
drive = 128
# The vendor and product strings are returned by
# the SCSI Inquiry command.
#vendor = "PCE "
#product = "PCEDISK "
}
device {
id = 4
drive = 129
}
device {
id = 2
drive = 130
}
}
disk {
drive = 1
type = "auto"
file = "disk1.dsk"
optional = 1
}
disk {
drive = 2
type = "auto"
file = "disk2.img"
optional = 1
}
disk {
drive = 3
type = "auto"
file = "disk3.img"
optional = 1
}
disk {
drive = 128
type = "auto"
file = "hd1.img"
optional = 0
}
disk {
drive = 129
type = "auto"
file = "hd2.img"
optional = 1
}
disk {
drive = 130
type = "auto"
file = "hd3.img"
optional = 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment