mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-28 20:32:18 +00:00
add Into the Eagle's Nest to the collection
This commit is contained in:
parent
6483826706
commit
7921572189
@ -1,5 +1,6 @@
|
||||
a = new ActiveXObject("scripting.filesystemobject")
|
||||
fileinfo = ""
|
||||
fileinfo = "# This file is automatically generated\r\n"
|
||||
|
||||
for (b = new Enumerator(a.GetFolder(WScript.Arguments(0)).files); !b.atEnd(); b.moveNext())
|
||||
{
|
||||
if (b.item().Name.toUpperCase() != "_FILEINFORMATION.TXT")
|
||||
@ -8,4 +9,4 @@ for (b = new Enumerator(a.GetFolder(WScript.Arguments(0)).files); !b.atEnd(); b.
|
||||
}
|
||||
}
|
||||
fileinfo += "\r\n" + "_FileInformation.txt=Type(" + WScript.Arguments(1) + "),AuxType(" + WScript.Arguments(2) + "),Access(C3)\r\n"
|
||||
a.createtextfile(WScript.Arguments(0)+"\\_FILEINFORMATION.TXT", 1).write(fileinfo.substring(2))
|
||||
a.createtextfile(WScript.Arguments(0)+"\\_FILEINFORMATION.TXT", 1).write(fileinfo)
|
||||
|
@ -109,6 +109,7 @@
|
||||
1000,IMPOSSIBLE.MISS=Impossible Mission
|
||||
0110,INDIANA.JONES
|
||||
1000,INTL.GRAN.PRIX=International Gran Prix
|
||||
0111,EAGLES.NEST=Into the Eagle's Nest
|
||||
0000,I.O.SILVER=I.O. Silver
|
||||
0001,JOUST
|
||||
0000,JUGGLER
|
||||
|
BIN
res/TITLE.DHGR/EAGLES.NEST
Normal file
BIN
res/TITLE.DHGR/EAGLES.NEST
Normal file
Binary file not shown.
@ -8,6 +8,7 @@ CALI.GAMES=Type(06),AuxType(4000),Access(C3)
|
||||
COLUMNS=Type(06),AuxType(4000),Access(C3)
|
||||
D.GENERATION=Type(06),AuxType(4000),Access(C3)
|
||||
DEATH.SWORD=Type(06),AuxType(4000),Access(C3)
|
||||
EAGLES.NEST=Type(06),AuxType(4000),Access(C3)
|
||||
HEAVY.BARREL=Type(06),AuxType(4000),Access(C3)
|
||||
INDIANA.JONES=Type(06),AuxType(4000),Access(C3)
|
||||
MATTERHORN=Type(06),AuxType(4000),Access(C3)
|
||||
|
BIN
res/dsk/into the eagle's nest PRODOS (san inc pack).po
Normal file
BIN
res/dsk/into the eagle's nest PRODOS (san inc pack).po
Normal file
Binary file not shown.
@ -77,7 +77,6 @@ Hardball
|
||||
Infiltrator
|
||||
Infiltrator II
|
||||
International Hockey
|
||||
Into The Eagle's Nest [DHGR][priority]
|
||||
Jawbreaker
|
||||
Lemmings
|
||||
Lunar Leepers
|
||||
|
45
src/prelaunch/eagles.nest.a
Normal file
45
src/prelaunch/eagles.nest.a
Normal file
@ -0,0 +1,45 @@
|
||||
;license:MIT
|
||||
;(c) 2020 by qkumba
|
||||
|
||||
!cpu 6502
|
||||
!to "build/PRELAUNCH/EAGLES.NEST",plain
|
||||
*=$106
|
||||
|
||||
!source "src/prelaunch/common.a"
|
||||
|
||||
+ENABLE_ACCEL
|
||||
lda #$60
|
||||
sta $9E6
|
||||
jsr $800 ; load DOS
|
||||
lda #$4C
|
||||
sta $347
|
||||
lda #<callback1
|
||||
sta $348
|
||||
lda #>callback1
|
||||
sta $349
|
||||
jmp $9600
|
||||
|
||||
callback1
|
||||
lda #<callback2
|
||||
sta $348
|
||||
jmp ($55)
|
||||
|
||||
callback2
|
||||
lda #$6C
|
||||
sta $347
|
||||
lda #$55
|
||||
sta $348
|
||||
lda #0
|
||||
sta $349
|
||||
+GET_MACHINE_STATUS
|
||||
and #CHEATS_ENABLED
|
||||
beq +
|
||||
lda #$ad
|
||||
sta $8580 ; patch - don't increase hits
|
||||
+
|
||||
+DISABLE_ACCEL
|
||||
jmp $347
|
||||
|
||||
!if * > $1C0 {
|
||||
!error "code is too large, ends at ", *
|
||||
}
|
10
winmake.bat
10
winmake.bat
@ -94,16 +94,6 @@ goto :EOF
|
||||
2>nul md build
|
||||
2>nul md build\po
|
||||
2>nul md build\X
|
||||
2>nul md build\TITLE.HGR
|
||||
2>nul md build\TITLE.DHGR
|
||||
2>nul md build\ACTION.HGR
|
||||
2>nul md build\ACTION.DHGR
|
||||
2>nul md build\ACTION.GR
|
||||
2>nul md build\ARTWORK.SHR
|
||||
2>nul md build\TITLE.ANIMATED
|
||||
2>nul md build\ATTRACT
|
||||
2>nul md build\SS
|
||||
2>nul md build\DEMO
|
||||
2>nul md build\FX
|
||||
2>nul md build\PRELAUNCH
|
||||
goto :EOF
|
||||
|
Loading…
x
Reference in New Issue
Block a user