Welcome to the Gamebase 64 forums.                 An attempt to document ALL Commodore 64 gameware before it's too late!

Updated Emu Scripts?

Discuss the Atari ST database that uses the GameBase Frontend.

Moderators: Jimbo, Cord, Paul Thompson

User avatar
rmonton
New Member
Contact:
Location: Paraguay
Posts: 32
Joined: Tue Aug 07, 2012 12:36 pm

Updated Emu Scripts?

Fri Apr 15, 2016 2:47 pm

Hi!..

A quick request.. anyone has updated scripts for the last emulator versions (Hatari 1.9.0, Steem SSE 3.8.1, SainT 2.40)?
User avatar
.mad.
Honoured Member
Honoured Member
Location: Lancashire
Posts: 2256
Joined: Sun Jun 19, 2005 3:30 pm

Fri Apr 15, 2016 3:36 pm

i did a couple of scripts for Hatari 1.8.0. about this time last year.

one using a custom cfg and the other editing original cfg.

should still work...
Last edited by .mad. on Mon Feb 12, 2018 5:26 pm, edited 1 time in total.
lookers
New Member
Posts: 39
Joined: Fri Oct 26, 2012 6:33 am

Re: Updated Emu Scripts?

Fri Feb 09, 2018 6:21 pm

Hi!!

In the last Hatari 2.1.0 version
".mad."script don't work anymore
anyone has an updated script?

Thanks
User avatar
.mad.
Honoured Member
Honoured Member
Location: Lancashire
Posts: 2256
Joined: Sun Jun 19, 2005 3:30 pm

Re: Updated Emu Scripts?

Fri Feb 09, 2018 9:32 pm

Copying the script from the "CODE Window" above will not work.
Since the gb64 forum was updated, the code window doesn't show the correct text from the old forum anymore.

examples
"(" should be displayed as "("
")" should be displayed as ")"

---
I can see the problem in the updated Hatari v2.1 config values.
it has been fixed.

HATARI v2.1.0 script

Code: Select all

;************************
;*     Hatari 2.1.0     *
;*   Script by .mad.    *
;*  10th February 2018  *
;*  hatari.cfg version  *
;************************

; http://hatari.tuxfamily.org/

; Default save location of config files hatari.cfg & hatari.nvram.
; C:\Documents and Settings\YOUR-NAME\.hatari\
; C:\Users\YOUR-NAME\.hatari\

; PRESS [F12] for emulator options MENU/

; PLEASE SET YOUR EMULATOR PROPERTIES AS FOLLOWS:
;
; Emulator File Win x86     : HATARI.EXE [83e0b795]
; Emulator File Win x64     : HATARI.EXE [7ff53906]
; Associated Script File (1): HATARI.CFG (v2.1.0)
; Other required files (53) : TOS images

; Use Short Filenames: YES
; File Types: ST;STx;MSA;DIM;IPF;RAW;CTR *STW

;STX, IPF and CTR disk images.
;These formats allow to backup a disk in an unaltered form, without requiring to remove the protection with a crack.
;Some complex protections rely on precise CPU/FDC timings and on some specific TOS version.
;For STF/STE protected games, it is recommended to use TOS 1.02 or 1.04 and 1MB RAM, as well as turning HD emulation OFF.
;By default everything that works on a real ST should work also in Hatari.

Set_ini_value(%emupath%\hatari.cfg||Log||bConfirmQuit || FALSE)

;--------------------------------------------------
; Set GameBase paths in HATARI.CFG
;----------------------------------------------------

Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskAZipPath || )
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskBZipPath || )

; C:\GBGame\0
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskImageDirectory || %gbgamepath%\0)

;Default EMU TOS
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || tos.img)

Set_ini_value(%emupath%\hatari.cfg||Sound||szYMCaptureFileName || hatari.wav)
Set_ini_value(%emupath%\hatari.cfg||Memory||szMemoryCaptureFileName || hatari.sav)
Set_ini_value(%emupath%\hatari.cfg||Memory||szAutoSaveFileName || auto.sav)
Set_ini_value(%emupath%\hatari.cfg||Printer||szPrintToFileName || hatari.prn)
Set_ini_value(%emupath%\hatari.cfg||Video||AviRecordFile || hatari.avi)
Set_ini_value(%emupath%\hatari.cfg||RS232||szOutFileName || /dev/modem)
Set_ini_value(%emupath%\hatari.cfg||RS232||szInFileName || /dev/modem)
Set_ini_value(%emupath%\hatari.cfg||Midi||sMidiInFileName || /dev/snd/midiC1D0)
Set_ini_value(%emupath%\hatari.cfg||Midi||sMidiOutFileName || /dev/snd/midiC1D0)

;crop status bar from screenshots
Set_ini_value(%emupath%\hatari.cfg||Screen||bCrop || TRUE)

;-----------------------------------------------
;Full Screen or Window (default).
;Edit resoultion 1920x1080 to suit your monitor.
;-----------------------------------------------

If Key_Screen CONTAINS (full)
Set_ini_value(%emupath%\hatari.cfg||Screen||bFullScreen || TRUE)

Set_ini_value(%emupath%\hatari.cfg||Screen||bKeepResolution || FALSE)
Set_ini_value(%emupath%\hatari.cfg||Screen||nMaxWidth || 1920)
Set_ini_value(%emupath%\hatari.cfg||Screen||nMaxHeight || 1080)
Set_ini_value(%emupath%\hatari.cfg||Screen||bForceMax || TRUE)
Set_ini_value(%emupath%\hatari.cfg||Screen||bShowDriveLed || TRUE)
Set_ini_value(%emupath%\hatari.cfg||Screen||bShowStatusbar || FALSE)
Set_ini_value(%emupath%\hatari.cfg||Screen||nFrameSkips || 0)

Else
Set_ini_value(%emupath%\hatari.cfg||Screen||bFullScreen || FALSE)
Set_ini_value(%emupath%\hatari.cfg||Screen||bForceMax || FALSE)

Set_ini_value(%emupath%\hatari.cfg||Screen||bKeepResolution || TRUE)
Set_ini_value(%emupath%\hatari.cfg||Screen||nMaxWidth || 832)
Set_ini_value(%emupath%\hatari.cfg||Screen||nMaxHeight || 576)
Set_ini_value(%emupath%\hatari.cfg||Screen||bShowStatusbar || TRUE)
Set_ini_value(%emupath%\hatari.cfg||Screen||nFrameSkips || 0)
End If

	;Set Resolution (Hi-RES mono) : Monkey Business
	If Key_Res CONTAINS(High)
	
	;Monitor: 0=Mono, 1=RGB, 2=VGA, 3=TV
	Set_ini_value(%emupath%\hatari.cfg||Screen||nMonitorType || 0)
	
	;Colours: 0=2, 1=4, 2=16
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiColors || 0)
	
	;384,512,640,768,896,1024,1152,1280,1408,1536,1664,1792,1920,2048
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiWidth || 640)
	
	;208,224,240,256,272,288,304,320,336,352,368,384,400,416,432,448,
	;464,480,496,512,528,544,560,576,592,608,624,640,656,672,688,
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiHeight || 400)
	
	;use this for custom res over 640x480
	;Set_ini_value(%emupath%\hatari.cfg||Screen||bUseExtVdiResolutions || TRUE)
	
	Else
	Set_ini_value(%emupath%\hatari.cfg||Screen||nMonitorType || 1)
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiColors || 2)
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiWidth || 640)
	Set_ini_value(%emupath%\hatari.cfg||Screen||nVdiHeight || 480)
	
	;crop border. without causes gfx problems in some hires modes.
	Set_ini_value(%emupath%\hatari.cfg||Screen||bCrop || FALSE)
	
	Set_ini_value(%emupath%\hatari.cfg||Screen||bUseExtVdiResolutions || FALSE)
	End If

;## Special options required to boot some games.
; Many do not work with cartridge / HD emulation.

;----------------------------------------------------------------------
;Eco, Hover Sprint, Oids and other games - Floppy write protection OFF.
;----------------------------------------------------------------------
If Key_writeprotection CONTAINS(off||no||false||0)
Set_ini_value(%emupath%\hatari.cfg||Floppy||nWriteProtection || 0)
Else
Set_ini_value(%emupath%\hatari.cfg||Floppy||nWriteProtection || 1)
End If

;----------------------------------------------------------------------
;Super Skweek , Jaguar XJ220 - Disable Fast floppy.
; Mercenary III.stx causes emulator to crash when on. (OFF as Default)
;----------------------------------------------------------------------
If Key_fastfloppy CONTAINS (on||yes||true)
Set_ini_value(%emupath%\hatari.cfg||Floppy||FastFloppy || TRUE)
Else
Set_ini_value(%emupath%\hatari.cfg||Floppy||FastFloppy || FALSE)
End If

;-------------------------------------------------------------------------------
;Super Sprint - Patch Timer-D must be disabled or the music will play too fast.
;------------------------------------------------------------------------------
If Key_PatchTimer-D CONTAINS (false||off||no)
Set_ini_value(%emupath%\hatari.cfg||System||bPatchTimerD || FALSE)
Else
Set_ini_value(%emupath%\hatari.cfg||System||bPatchTimerD || TRUE)
End If

;-----------------------------
;Yolanda - fast boot disabled.
;-----------------------------
If Key_fastboot CONTAINS (false||off||no)
Set_ini_value(%emupath%\hatari.cfg||System||bFastBoot || FALSE)
Else
Set_ini_value(%emupath%\hatari.cfg||System||bFastBoot || TRUE)
End If

;-----------------------------------------------------------------------------
;Running Man, Treasure Trap, The Deep - RS232 enabled (writes to serial port).
;-----------------------------------------------------------------------------
If Key_RS232 CONTAINS (yes||on||true)
Set_ini_value(%emupath%\hatari.cfg||RS232||bEnableRS232 || TRUE)
Else
Set_ini_value(%emupath%\hatari.cfg||RS232||bEnableRS232 || FALSE)
End IF

;------------------------------------
;Eject Floppy Disks from both Drives.
;------------------------------------
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskAFileName || )
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskBFileName || )

;---------------------------------
;Remove attached HardDrive images.
;---------------------------------
Set_ini_value(%emupath%\hatari.cfg||HardDisk||szHardDiskImage || )
Set_ini_value(%emupath%\hatari.cfg||HardDisk||szIdeMasterHardDiskImage || )
Set_ini_value(%emupath%\hatari.cfg||HardDisk||szIdeSlaveHardDiskImage || )

;-----------------------------------------------------
; Machine type (ST, MegaST, STE, MegaSTE, TT, Falcon).
; * TT and Falcon not used in Atari ST GameBase.
;
; A TOS setting in the GEMUS will override the machine type.
; Can not have a incompatible TOS and Machine.
;---------------------------------------------------------
If key_Machine CONTAINS(ST)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_Machine CONTAINS(MegaST)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 1)

ElseIf key_Machine CONTAINS(STE)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 2)

ElseIf key_Machine CONTAINS(MegaSTE)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 3)

ElseIf key_Machine CONTAINS(TT)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 4)

ElseIf key_Machine CONTAINS(Falcon)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 5)

Else
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)
End If

;--------------------------------------------------
; CPU type (68000, 68010, 68020, 68030+FPU, 68040).
;--------------------------------------------------

If key_CPU CONTAINS(68000)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 0)

Else If key_CPU CONTAINS(68010)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 1)

Else If key_CPU CONTAINS(68020)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 2)

Else If key_CPU CONTAINS(68030)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 3)

Else If key_CPU CONTAINS(68040)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 4)

Else
Set_ini_value(%emupath%\hatari.cfg||System||nCpuLevel || 0)
End If

;---------------------------
; CPU Clock Mhz (8, 16, 32).
;---------------------------
If key_speed CONTAINS(8)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuFreq || 8)

Else If key_speed CONTAINS(16)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuFreq || 16)

Else If key_speed CONTAINS(32)
Set_ini_value(%emupath%\hatari.cfg||System||nCpuFreq || 32)

Else
Set_ini_value(%emupath%\hatari.cfg||System||nCpuFreq || 8)
End If

;-----------------------------------------------
; Memory (new values for Hatari v2.1)
; 256, 512, 1024, 2048, 2560, 4096, 8192, 14336
;-----------------------------------------------
If key_RAM CONTAINS(512k)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 512)

ElseIf key_RAM CONTAINS(1MB)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 1024)

ElseIf key_RAM CONTAINS(2MB)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 2048)

ElseIf key_RAM CONTAINS(4MB)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 4096)

ElseIf key_RAM CONTAINS(8MB)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 8192)

ElseIf key_RAM CONTAINS(14MB)
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 14336)

;Default is 4MB for GamebaseST
Else
Set_ini_value(%emupath%\hatari.cfg||Memory||nMemorySize || 4096)
End If

;---------------------------------------------------------
; Select TOS version to use (All language hacks included.)
;---------------------------------------------------------
; Some ST games and demos require a specific TOS version.
; Atari ST  TOS = 100,102,104,205,206
; Atari STE TOS = 106,162,205,206
;
; Warlock's Quest - TOS 102 or 162.
; 4 Wheel Drive compilation - TOS 104.
; Arkanoid - TOS 102 for mouse input.
; Dragon Ninja - TOS <= 104.
; Fire And Forget II - UK or US TOS.
; Garfield Winter's Tail - TOS 104 and 1MB RAM.
; Grimblood - TOS 102.
; Populous USA version - US TOS.
; Populous - TOS 104.
;---------------------------------------------------------
; GEMUS examples
; tos=104uk
; tos=205de-b
;---------------------------------------------------------

If key_TOS CONTAINS(100)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS100UK.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(100US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS100US.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(102)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS102UK.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(102US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS102US.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(104)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS104UK.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(104US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS104US.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 0)

ElseIf key_TOS CONTAINS(106)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS106UK.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 2)

ElseIf key_TOS CONTAINS(106US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS106US.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 2)

ElseIf key_TOS CONTAINS(162)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS162UK.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 2)

ElseIf key_TOS CONTAINS(162US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS162US.img)
Set_ini_value(%emupath%\hatari.cfg||System||nModelType || 2)

ElseIf key_TOS CONTAINS(205)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS205UK.img)

ElseIf key_TOS CONTAINS(205US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS205US.img)

ElseIf key_TOS CONTAINS(206)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS206UK.img)

ElseIf key_TOS CONTAINS(206US)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS206US.img)


;-------------------------------------------------------------------
;Just use your own custom TOS file - place in DIR Hatari\TOS\.
; GEMUS examples
; tosfile=tos104uk.img
; tosfile=anytosfilename.img (long names and spaces might break it).
;-------------------------------------------------------------------
ElseIf Key_tosfile CONTAINS (*)
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\%tosfile_value%)

Else
;use default TOS 104 UK
Set_ini_value(%emupath%\hatari.cfg||ROM||szTosImageFileName || %dbpath%\Emulators\TOS\TOS104UK.img)
End If

	;Setup gbgamepath dir as HardDisk Image.
	If Key_Harddisk CONTAINS(Yes)
		Set_INI_Value(%emupath%\hatari.cfg||HardDisk||szHardDiskDirectory || %gamepath%\Harddisk)
		Set_INI_Value(%emupath%\hatari.cfg||HardDisk||bUseHardDiskDirectory || TRUE)

		;Updated HD files unzip for 64bit OS
		Run_Program(%dbpath%\scripts\7za.exe||x %gamepath%\harddisk.zip -o%gamepath%\Harddisk||wait)
	Else
		Set_INI_Value(%emupath%\hatari.cfg||HardDisk||szHardDiskDirectory || )
		Set_INI_Value(%emupath%\hatari.cfg||HardDisk||bUseHardDiskDirectory || FALSE)
	
	End If

;Insert GameBase Disk in Drive A
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskAFileName || %gamepathfile%)
if key_disk2 CONTAINS(yes)
Set_ini_value(%emupath%\hatari.cfg||Floppy||szDiskBFileName || %gamepathfile(1)%)
end if

Add_CLP (--configfile hatari.cfg)

;Run Hatari Emulator
Run_Emulator()
hatari.cfg

Code: Select all

[Log]
sLogFileName = stderr
sTraceFileName = stderr
nTextLogLevel = 3
nAlertDlgLogLevel = 1
bConfirmQuit = FALSE
bNatFeats = FALSE
bConsoleWindow = FALSE

[Debugger]
nNumberBase = 10
nSymbolLines = -1
nMemdumpLines = -1
nDisasmLines = -1
nExceptionDebugMask = 515
nDisasmOptions = 15
bDisasmUAE = FALSE
bSymbolsResident = FALSE
bMatchAllSymbols = FALSE

[Screen]
nMonitorType = 1
nFrameSkips = 0
bFullScreen = FALSE
bKeepResolution = TRUE
bResizable = TRUE
bAllowOverscan = TRUE
nSpec512Threshold = 1
nForceBpp = 0
bAspectCorrect = TRUE
bUseExtVdiResolutions = FALSE
nVdiWidth = 640
nVdiHeight = 480
nVdiColors = 2
bMouseWarp = TRUE
bShowStatusbar = TRUE
bShowDriveLed = FALSE
bCrop = FALSE
bForceMax = FALSE
nMaxWidth = 832
nMaxHeight = 576
bUseSdlRenderer = TRUE
nRenderScaleQuality = 0
bUseVsync = FALSE

[Joystick0]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = -1
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Joystick1]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = 0
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Joystick2]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = -1
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Joystick3]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = -1
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Joystick4]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = -1
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Joystick5]
nJoystickMode = 0
bEnableAutoFire = FALSE
bEnableJumpOnFire2 = FALSE
nJoyId = -1
kUp = Up
kDown = Down
kLeft = Left
kRight = Right
kFire = Right Ctrl

[Keyboard]
bDisableKeyRepeat = FALSE
nKeymapType = 0
szMappingFileName =

[KeyShortcutsWithMod]
kOptions = O
kFullScreen = F
kBorders = B
kMouseMode = M
kColdReset = C
kWarmReset = R
kScreenShot = G
kBossKey = I
kCursorEmu = J
kFastForward = X
kRecAnim = A
kRecSound = Y
kSound = S
kPause =
kDebugger = Pause
kQuit = Q
kLoadMem = L
kSaveMem = K
kInsertDiskA = D
kSwitchJoy0 = F1
kSwitchJoy1 = F2
kSwitchPadA = F3
kSwitchPadB = F4

[KeyShortcutsWithoutMod]
kOptions = F12
kFullScreen = F11
kBorders =
kMouseMode =
kColdReset =
kWarmReset =
kScreenShot =
kBossKey =
kCursorEmu =
kFastForward =
kRecAnim =
kRecSound =
kSound =
kPause = Pause
kDebugger =
kQuit =
kLoadMem =
kSaveMem =
kInsertDiskA =
kSwitchJoy0 =
kSwitchJoy1 =
kSwitchPadA =
kSwitchPadB =

[Sound]
bEnableMicrophone = TRUE
bEnableSound = TRUE
bEnableSoundSync = FALSE
nPlaybackFreq = 44100
nSdlAudioBufferSize = 0
szYMCaptureFileName = hatari.wav
YmVolumeMixing = 2

[Memory]
nMemorySize = 512
nTTRamSize = 0
bAutoSave = FALSE
szMemoryCaptureFileName = hatari.sav
szAutoSaveFileName = auto.sav

[Floppy]
bAutoInsertDiskB = TRUE
FastFloppy = FALSE
EnableDriveA = TRUE
DriveA_NumberOfHeads = 2
EnableDriveB = TRUE
DriveB_NumberOfHeads = 2
nWriteProtection = 1
szDiskAZipPath = 
szDiskAFileName = 
szDiskBZipPath = 
szDiskBFileName = 
szDiskImageDirectory = C:\GBGame\0

[HardDisk]
nGemdosDrive = 0
bBootFromHardDisk = FALSE
bUseHardDiskDirectory = FALSE
szHardDiskDirectory = 
nGemdosCase = 0
nWriteProtection = 0
bFilenameConversion = FALSE
bGemdosHostTime = FALSE
bUseHardDiskImage = FALSE
szHardDiskImage = 
bUseIdeMasterHardDiskImage = FALSE
bUseIdeSlaveHardDiskImage = FALSE
szIdeMasterHardDiskImage = 
szIdeSlaveHardDiskImage = 

[ROM]
szTosImageFileName = TOS.img
bPatchTos = TRUE
szCartridgeImageFileName =

[RS232]
bEnableRS232 = FALSE
szOutFileName = /dev/modem
szInFileName = /dev/modem

[Printer]
bEnablePrinting = FALSE
szPrintToFileName = hatari.prn

[Midi]
bEnableMidi = FALSE
sMidiInFileName = /dev/snd/midiC1D0
sMidiOutFileName = /dev/snd/midiC1D0
sMidiInPortName = Off
sMidiOutPortName = Off

[System]
nCpuLevel = 0
nCpuFreq = 8
bCompatibleCpu = TRUE
nModelType = 0
bBlitter = FALSE
nDSPType = 0
bPatchTimerD = TRUE
bFastBoot = TRUE
bFastForward = FALSE
bAddressSpace24 = TRUE
bCycleExactCpu = TRUE
n_FPUType = 0
bSoftFloatFPU = FALSE
bMMU = FALSE
VideoTiming = 3

[Video]
AviRecordVcodec = 2
AviRecordFps = 0
AviRecordFile = hatari.avi
lookers
New Member
Posts: 39
Joined: Fri Oct 26, 2012 6:33 am

Re: Updated Emu Scripts?

Sat Feb 10, 2018 2:15 pm

Hi .mad.

your script work like a charm :D :D :D :D
Thanks

Return to “Atari ST - GameBaseST”

Who is online

Users browsing this forum: No registered users and 9 guests