g0key.spin - Bug bei horizontaler Textzentrierung beseitigt
belflash.spin - Interface VGA/TV vereinheitlicht, umschaltbar beim Compilieren (siehe make.bat) belf-tv.spin, belf-vga.spin - treiberspezifische Konstanten und Funktionen für belflash.spin bel-bus.spin - Auslagerung der Bus-Routinen aus Bellatrix-Sicht beltest.spin - Anpassung an belflash.spin, auch im TV-Modus nutzbar make.bat - tv.bel wird jetzt aus belflash.spin erzeugt; Einführung einer Variablen für den Compiler-Aufruf reg-ios.spin - hmm... habsch vergessen, was da geändert wurde :-(
This commit is contained in:
parent
4ca7854d78
commit
c39ffa7d23
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/reg-ios.spin
BIN
lib/reg-ios.spin
Binary file not shown.
36
make.bat
36
make.bat
|
@ -7,6 +7,7 @@ set sd=".\bin\sdcard"
|
|||
set sd-sys=".\bin\sdcard\system"
|
||||
set flash=".\bin\flash"
|
||||
set libpath=".\lib"
|
||||
set BSTC=bstc.exe
|
||||
|
||||
REM ----------------------------------------------------------------
|
||||
REM Alte Versionen löschen
|
||||
|
@ -19,19 +20,21 @@ REM ----------------------------------------------------------------
|
|||
REM Flashdateien erzeugen
|
||||
REM --> \bin\flash
|
||||
|
||||
bstc -L %libpath% -b -O a .\flash\administra\admflash.spin
|
||||
move admflash.binary %flash%
|
||||
|
||||
bstc -L %libpath% -b -O a .\flash\administra\admflash.spin
|
||||
%BSTC% -L %libpath% -b -O a .\flash\administra\admflash.spin
|
||||
copy admflash.binary %flash%
|
||||
rename admflash.binary admsys.adm
|
||||
move admsys.adm %sd-sys%
|
||||
|
||||
bstc -L %libpath% -b -O a .\flash\bellatrix\belflash.spin
|
||||
%BSTC% -L %libpath% -D __VGA -b -O a .\flash\bellatrix\belflash.spin
|
||||
copy belflash.binary %flash%
|
||||
rename belflash.binary vga.bel
|
||||
move vga.bel %sd-sys%
|
||||
|
||||
bstc -L %libpath% -b -O a .\flash\regnatix\regflash.spin
|
||||
%BSTC% -L %libpath% -D __TV -b -O a .\flash\bellatrix\belflash.spin
|
||||
rename belflash.binary tv.bel
|
||||
move tv.bel %sd-sys%
|
||||
|
||||
%BSTC% -L %libpath% -b -O a .\flash\regnatix\regflash.spin
|
||||
move regflash.binary %flash%
|
||||
|
||||
REM ----------------------------------------------------------------
|
||||
|
@ -40,26 +43,27 @@ REM reg.sys (Regime)
|
|||
REM bel.sys (VGA)
|
||||
REM --> \bin\sdcard\
|
||||
|
||||
bstc -L %libpath% -b -O a .\system\regnatix\regime.spin
|
||||
%BSTC% -L %libpath% -b -O a .\system\regnatix\regime.spin
|
||||
rename regime.binary reg.sys
|
||||
move reg.sys %sd%
|
||||
|
||||
bstc -L %libpath% -b -O a .\flash\bellatrix\belflash.spin
|
||||
rename belflash.binary bel.sys
|
||||
move bel.sys %sd%
|
||||
REM %BSTC% -L %libpath% -b -O a .\flash\bellatrix\belflash.spin
|
||||
REM rename belflash.binary bel.sys
|
||||
REM move bel.sys %sd%
|
||||
copy %flash%\belflash.binary %sd%\bel.sys
|
||||
|
||||
REM ----------------------------------------------------------------
|
||||
REM Slave-Dateien erzeugen
|
||||
REM admsid, admay, admterm
|
||||
REM htxt, tv, g0key
|
||||
|
||||
bstc -L %libpath% -b -O a .\system\administra\admsid\admsid.spin
|
||||
bstc -L %libpath% -b -O a .\system\administra\admay\admay.spin
|
||||
%BSTC% -L %libpath% -b -O a .\system\administra\admsid\admsid.spin
|
||||
%BSTC% -L %libpath% -b -O a .\system\administra\admay\admay.spin
|
||||
rename *.binary *.adm
|
||||
|
||||
bstc -L %libpath% -b -O a .\system\bellatrix\bel-htext\htext.spin
|
||||
bstc -L %libpath% -b -O a .\system\bellatrix\bel-tv\tv.spin
|
||||
bstc -L %libpath% -b -O a .\system\bellatrix\bel-g0\g0key.spin
|
||||
%BSTC% -L %libpath% -b -O a .\system\bellatrix\bel-htext\htext.spin
|
||||
REM (siehe oben) %BSTC% -L %libpath% -b -O a .\system\bellatrix\bel-tv\tv.spin
|
||||
%BSTC% -L %libpath% -b -O a .\system\bellatrix\bel-g0\g0key.spin
|
||||
rename *.binary *.bel
|
||||
|
||||
move *.adm %sd-sys%
|
||||
|
@ -72,7 +76,7 @@ REM - div. externe Kommandos
|
|||
REM - div. Systemdateien (Farbtabellen usw.)
|
||||
REM --> \bin\sdcard\system\
|
||||
|
||||
for %%x in (.\system\regnatix\*.spin) do bstc -L %libpath% -b -O a %%x
|
||||
for %%x in (.\system\regnatix\*.spin) do %BSTC% -L %libpath% -b -O a %%x
|
||||
rename *.binary *.bin
|
||||
move *.bin %sd-sys%
|
||||
copy .\forth\*.* %sd-sys%
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue