aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-02-05 19:35:07 +0100
committerJavier <dev.git@javispedro.com>2022-02-05 19:35:07 +0100
commitc6228d95afe04aab8ca9b947030679778e228f52 (patch)
treeae36abeb6b7cb60516e20fb781fef06c1a02c775 /scripts
parent774984e2f00b4ea81060adf7a0625706ddaa42a5 (diff)
downloadvmusic-c6228d95afe04aab8ca9b947030679778e228f52.tar.gz
vmusic-c6228d95afe04aab8ca9b947030679778e228f52.zip
fix accidental truncation of sample_count register
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/enable.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/enable.sh b/scripts/enable.sh
index 24763bb..315f0ac 100755
--- a/scripts/enable.sh
+++ b/scripts/enable.sh
@@ -4,6 +4,13 @@ set -ex
vm="$1"
+# Adlib
VBoxManage setextradata "$vm" VBoxInternal/Devices/adlib/0/Trusted 1
VBoxManage setextradata "$vm" VBoxInternal/Devices/adlib/0/Config/MirrorPort "0x220"
+
+# MPU-401
VBoxManage setextradata "$vm" VBoxInternal/Devices/mpu401/0/Trusted 1
+
+# EMU8000
+awe32_romfile=~/.pcem/roms/awe32.raw # Mandatory!
+VBoxManage setextradata "$vm" VBoxInternal/Devices/emu8000/0/Config/ROMFile "$awe32_romfile"