flash\administra\admflash.spin
- Überarbeitung der Routine zum mounten der SD-Card. Da verschiedene Karten unterschiedliches Timing haben, wird jetzt solange versucht zu mounten, bis ein Erfolg eintritt, was zusätzlich akustisch durch einen leise anschwellenden Ton angezeigt wird. Das Verfahren ist jetzt wesentlich robuster. - rtc.setSQWOUTState(1) --> rtc.setSQWOUTState(0) deaktiviert den Frequenzausgang, verringert damit lt. DS1307-Datenblatt den Pufferstrom von 480 auf 300 nA und erhöht somit die Pufferdauer der Batterie auf das 1,6-fache. - Plexbus-Funktionen entfernt - Screeninterface-Funktionen zugefügt flash\bellatrix\belflash.spin - Anpassung für verschiedene Zeilenumbrüche in print_char eingefügt. flash\regnatix\regflash.spin - Der Loader hat fälschlicherweise das Warmstartflag für die Ramdisk gesetzt, wodurch sie nicht resetfest war. forth\fib.mod - Fibonacci-Benchmark (iterativ) in Forth. lib\adm-fat.spin - Fehler in setCharacterPosition: Bei einem Wechsel von einer Position > 0 auf Position = 0 wurde der erste Sektor mit falschen Daten überschrieben. lib\reg-ios.spin - Funktionsset für Grafikmodus 0 eingefügt - sfx_keyoff, sfx_stop eingefügt - printq zugefügt: Ausgabe einer Zeichenkette ohne Steuerzeichen - Korrektur char_ter_bs - Plexbus-Funktionen entfernt - Screeninterface-Funktionen eingefügt - Bellatrix-Funktionen blktrans, bmgr_load eingefügt - Funktion os_error zugefügt für zentrale Ausgabe von Fehlern - Korrektur BS in input-Funktion - Funktion printblk für schnellen Blocktransfer - Div. Fehler in den Ramdisk-Funktionen, welche jetzt auch resetfest ist. - Funktion rd_getback um Zeichen rückwärts aus der Ramdisk zu lesen. - Funktion ram_getfree liefert freien Speicher im eRAM system\regnatix\eram.spin - Korrektur BS-Steuercode system\regnatix\hplay.spin - Der HSS-Player hat seine Daten fals im SYS-Modus im eRAM abgelegt und so die Ramdisk beschädigt. Korrektur der Speichernutzung. system\regnatix\regime.spin - Korrekte Initialisierung der Ramdisk (resetfest) - Korrektur der Bisldschirminitialisierung nach dem Laden von Bellatrix-Code - Verwendung von ios.os_error für die Fehlerausgabe - Fehler im Kommando "reboot" beim Kaltstart behoben - Korrektur Ausgabe von "cogs" system\regnatix\time.spin - Korrektur Tipfehler system\regnatix\basic.spin Ich habe Femto Basic entfernt, da es nicht integraler Bestandteil von TriOS ist und mir die Zeit fehlt es an den aktuelen Stand anzupassen.
This commit is contained in:
parent
17b1950c80
commit
2803b8f31f
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.
|
@ -0,0 +1,22 @@
|
|||
|
||||
: mod:fib ;
|
||||
|
||||
\ ( n -- f ) berechnet die nte fibonacci-zahl
|
||||
: fib
|
||||
0 1 rot 0 do over + swap loop drop ;
|
||||
|
||||
\ benchmark über n fibonacci-zahlen
|
||||
: fibo-bench
|
||||
1+ 1 do
|
||||
i ." fibo(" . ." ) = "
|
||||
i cnt COG@ swap fib cnt COG@ swap .
|
||||
swap - ." , ticks : " .
|
||||
cr
|
||||
loop ;
|
||||
|
||||
decimal 40 fibo-bench hex
|
||||
|
||||
|
||||
|
||||
|
||||
|
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.
|
@ -0,0 +1,22 @@
|
|||
|
||||
: mod:fib ;
|
||||
|
||||
\ ( n -- f ) berechnet die nte fibonacci-zahl
|
||||
: fib
|
||||
0 1 rot 0 do over + swap loop drop ;
|
||||
|
||||
\ benchmark über n fibonacci-zahlen
|
||||
: fibo-bench
|
||||
1+ 1 do
|
||||
i ." fibo(" . ." ) = "
|
||||
i cnt COG@ swap fib cnt COG@ swap .
|
||||
swap - ." , ticks : " .
|
||||
cr
|
||||
loop ;
|
||||
|
||||
decimal 40 fibo-bench hex
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
lib/adm-fat.spin
BIN
lib/adm-fat.spin
Binary file not shown.
BIN
lib/reg-ios.spin
BIN
lib/reg-ios.spin
Binary file not shown.
1
make.bat
1
make.bat
|
@ -55,7 +55,6 @@ 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\aterm\aterm.spin
|
||||
rename *.binary *.adm
|
||||
|
||||
bstc -L %libpath% -b -O a .\system\bellatrix\bel-htext\htext.spin
|
||||
|
|
169
make.log
169
make.log
|
@ -1,9 +1,9 @@
|
|||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>date /T
|
||||
01.12.2011
|
||||
08.02.2012
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>time /T
|
||||
21:42
|
||||
18:05
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>REM Pfade
|
||||
|
||||
|
@ -39,11 +39,10 @@ Loading Object adm-fat
|
|||
Loading Object adm-rtc.spin
|
||||
Loading Object adm-hss
|
||||
Loading Object adm-wav
|
||||
Loading Object adm-plx
|
||||
Loading Object adm-rtc
|
||||
Program size is 13256 longs
|
||||
2 Constants folded
|
||||
Compiled 2590 Lines of Code in 0,358 Seconds
|
||||
Program size is 13204 longs
|
||||
5 Constants folded
|
||||
Compiled 2571 Lines of Code in 0,359 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>move admflash.binary ".\bin\flash"
|
||||
|
||||
|
@ -55,11 +54,10 @@ Loading Object adm-fat
|
|||
Loading Object adm-rtc.spin
|
||||
Loading Object adm-hss
|
||||
Loading Object adm-wav
|
||||
Loading Object adm-plx
|
||||
Loading Object adm-rtc
|
||||
Program size is 13256 longs
|
||||
2 Constants folded
|
||||
Compiled 2590 Lines of Code in 0,249 Seconds
|
||||
Program size is 13204 longs
|
||||
5 Constants folded
|
||||
Compiled 2571 Lines of Code in 0,266 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename admflash.binary admsys.adm
|
||||
|
||||
|
@ -71,9 +69,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object belflash
|
||||
Loading Object bel-vga
|
||||
Loading Object bel-keyb
|
||||
Program size is 6432 longs
|
||||
Program size is 6512 longs
|
||||
12 Constants folded
|
||||
Compiled 1108 Lines of Code in 0,155 Seconds
|
||||
Compiled 1120 Lines of Code in 0,171 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>copy belflash.binary ".\bin\flash"
|
||||
1 Datei(en) kopiert.
|
||||
|
@ -86,8 +84,8 @@ H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -
|
|||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object regflash
|
||||
Program size is 32584 longs
|
||||
Compiled 694 Lines of Code in 0,311 Seconds
|
||||
Program size is 32576 longs
|
||||
Compiled 693 Lines of Code in 0,328 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>move regflash.binary ".\bin\flash"
|
||||
|
||||
|
@ -107,9 +105,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object regime
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-string
|
||||
Program size is 9272 longs
|
||||
Program size is 9364 longs
|
||||
2 Constants folded
|
||||
Compiled 2476 Lines of Code in 0,328 Seconds
|
||||
Compiled 2509 Lines of Code in 0,358 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename regime.binary reg.sys
|
||||
|
||||
|
@ -121,9 +119,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object belflash
|
||||
Loading Object bel-vga
|
||||
Loading Object bel-keyb
|
||||
Program size is 6432 longs
|
||||
Program size is 6512 longs
|
||||
12 Constants folded
|
||||
Compiled 1108 Lines of Code in 0,109 Seconds
|
||||
Compiled 1120 Lines of Code in 0,124 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename belflash.binary bel.sys
|
||||
|
||||
|
@ -145,7 +143,7 @@ Loading Object adm-fat
|
|||
Loading Object adm-rtc.spin
|
||||
Loading Object adm-sid
|
||||
Program size is 11968 longs
|
||||
Compiled 2206 Lines of Code in 0,249 Seconds
|
||||
Compiled 2206 Lines of Code in 0,281 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\administra\admay\admay.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -154,16 +152,8 @@ Loading Object admay
|
|||
Loading Object adm-fat
|
||||
Loading Object adm-rtc.spin
|
||||
Loading Object adm-ay
|
||||
Program size is 8308 longs
|
||||
Compiled 1705 Lines of Code in 0,172 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\administra\aterm\aterm.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
|
||||
aterm - Unable to locate top file aterm
|
||||
|
||||
Compiled 0 Lines of Code in 0 Seconds
|
||||
Program size is 8304 longs
|
||||
Compiled 1705 Lines of Code in 0,203 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename *.binary *.adm
|
||||
|
||||
|
@ -175,7 +165,7 @@ Loading Object bel-htext
|
|||
Loading Object bel-keyb
|
||||
Program size is 6656 longs
|
||||
12 Constants folded
|
||||
Compiled 958 Lines of Code in 0,124 Seconds
|
||||
Compiled 958 Lines of Code in 0,156 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\bellatrix\bel-tv\tv.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -193,7 +183,7 @@ Loading Object g0key
|
|||
Loading Object bel-tv
|
||||
Program size is 7148 longs
|
||||
1 Constants folded
|
||||
Compiled 1870 Lines of Code in 0,188 Seconds
|
||||
Compiled 1870 Lines of Code in 0,203 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename *.binary *.bel
|
||||
|
||||
|
@ -224,33 +214,27 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object admtest
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-string
|
||||
Program size is 8092 longs
|
||||
Compiled 2286 Lines of Code in 0,25 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\basic.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object basic
|
||||
Loading Object reg-ios
|
||||
Program size is 8616 longs
|
||||
4 Constants folded
|
||||
Compiled 2678 Lines of Code in 0,217 Seconds
|
||||
Program size is 8216 longs
|
||||
1 Constants folded
|
||||
Compiled 2381 Lines of Code in 0,296 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\beltest.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object beltest
|
||||
Loading Object reg-ios
|
||||
Program size is 4456 longs
|
||||
Compiled 1886 Lines of Code in 0,171 Seconds
|
||||
Program size is 4580 longs
|
||||
1 Constants folded
|
||||
Compiled 1981 Lines of Code in 0,202 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\charmap.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object charmap
|
||||
Loading Object reg-ios
|
||||
Program size is 2072 longs
|
||||
Compiled 1599 Lines of Code in 0,094 Seconds
|
||||
Program size is 2264 longs
|
||||
1 Constants folded
|
||||
Compiled 1694 Lines of Code in 0,124 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\eram.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -258,9 +242,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object eram
|
||||
Loading Object glob-numbers
|
||||
Loading Object reg-ios
|
||||
Program size is 8676 longs
|
||||
Program size is 8700 longs
|
||||
2 Constants folded
|
||||
Compiled 2565 Lines of Code in 0,281 Seconds
|
||||
Compiled 2658 Lines of Code in 0,328 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\flash.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -269,9 +253,9 @@ Loading Object flash
|
|||
Loading Object reg-ios
|
||||
Loading Object glob-sdspi
|
||||
Loading Object glob-numbers
|
||||
Program size is 7312 longs
|
||||
6 Constants folded
|
||||
Compiled 2977 Lines of Code in 0,281 Seconds
|
||||
Program size is 7436 longs
|
||||
7 Constants folded
|
||||
Compiled 3072 Lines of Code in 0,312 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\fterm.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -279,34 +263,36 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object fterm
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-fds
|
||||
Program size is 2476 longs
|
||||
Compiled 1779 Lines of Code in 0,108 Seconds
|
||||
Program size is 2668 longs
|
||||
1 Constants folded
|
||||
Compiled 1874 Lines of Code in 0,141 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\g0test.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object g0test
|
||||
Loading Object reg-ios
|
||||
Program size is 5684 longs
|
||||
36 Constants folded
|
||||
Compiled 2075 Lines of Code in 0,171 Seconds
|
||||
Program size is 5880 longs
|
||||
37 Constants folded
|
||||
Compiled 2170 Lines of Code in 0,204 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\hplay.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object hplay
|
||||
Loading Object reg-ios
|
||||
Program size is 4112 longs
|
||||
8 Constants folded
|
||||
Compiled 1842 Lines of Code in 0,156 Seconds
|
||||
Program size is 4240 longs
|
||||
9 Constants folded
|
||||
Compiled 1937 Lines of Code in 0,188 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\keycode.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object keycode
|
||||
Loading Object reg-ios
|
||||
Program size is 2064 longs
|
||||
Compiled 1602 Lines of Code in 0,077 Seconds
|
||||
Program size is 2192 longs
|
||||
1 Constants folded
|
||||
Compiled 1697 Lines of Code in 0,108 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\perplex.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -314,17 +300,22 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object perplex
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-numbers
|
||||
Program size is 4956 longs
|
||||
Compiled 2329 Lines of Code in 0,187 Seconds
|
||||
|
||||
perplex(190,7) Error : Unable to locate method/constant in Object
|
||||
ios.plx_reset
|
||||
______^
|
||||
|
||||
3 Constants folded
|
||||
Compiled 2424 Lines of Code in 0,141 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\ramtest.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object ramtest
|
||||
Loading Object reg-ios
|
||||
Program size is 4156 longs
|
||||
34 Constants folded
|
||||
Compiled 1855 Lines of Code in 0,156 Seconds
|
||||
Program size is 4284 longs
|
||||
35 Constants folded
|
||||
Compiled 1950 Lines of Code in 0,172 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\regime.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -332,9 +323,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object regime
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-string
|
||||
Program size is 9272 longs
|
||||
Program size is 9364 longs
|
||||
2 Constants folded
|
||||
Compiled 2476 Lines of Code in 0,266 Seconds
|
||||
Compiled 2509 Lines of Code in 0,296 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\rom.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -342,9 +333,9 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object rom
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-sdspi
|
||||
Program size is 4184 longs
|
||||
3 Constants folded
|
||||
Compiled 2215 Lines of Code in 0,141 Seconds
|
||||
Program size is 4376 longs
|
||||
4 Constants folded
|
||||
Compiled 2310 Lines of Code in 0,171 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\sfxtool.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -352,25 +343,27 @@ Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
|||
Loading Object sfxtool
|
||||
Loading Object reg-ios
|
||||
Loading Object glob-numbers
|
||||
Program size is 6220 longs
|
||||
Compiled 2388 Lines of Code in 0,203 Seconds
|
||||
Program size is 6344 longs
|
||||
1 Constants folded
|
||||
Compiled 2483 Lines of Code in 0,249 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\splay.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object splay
|
||||
Loading Object reg-ios
|
||||
Program size is 3172 longs
|
||||
Compiled 1713 Lines of Code in 0,124 Seconds
|
||||
Program size is 3300 longs
|
||||
1 Constants folded
|
||||
Compiled 1808 Lines of Code in 0,171 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\sysconf.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object sysconf
|
||||
Loading Object reg-ios
|
||||
Program size is 4564 longs
|
||||
1 Constants folded
|
||||
Compiled 1817 Lines of Code in 0,157 Seconds
|
||||
Program size is 4692 longs
|
||||
2 Constants folded
|
||||
Compiled 1912 Lines of Code in 0,187 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\time.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
|
@ -379,30 +372,32 @@ Loading Object time
|
|||
Loading Object reg-ios
|
||||
Loading Object glob-string
|
||||
Loading Object glob-numbers
|
||||
Program size is 5620 longs
|
||||
Compiled 2377 Lines of Code in 0,203 Seconds
|
||||
Program size is 5816 longs
|
||||
1 Constants folded
|
||||
Compiled 2472 Lines of Code in 0,249 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\wplay.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object wplay
|
||||
Loading Object reg-ios
|
||||
Program size is 3468 longs
|
||||
Compiled 1734 Lines of Code in 0,156 Seconds
|
||||
Program size is 3596 longs
|
||||
1 Constants folded
|
||||
Compiled 1829 Lines of Code in 0,186 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>bstc -L ".\lib" -b -O a .\system\regnatix\yplay.spin
|
||||
Brads Spin Tool Compiler v0.15.3 - Copyright 2008,2009 All rights reserved
|
||||
Compiled for i386 Win32 at 08:17:48 on 2009/07/20
|
||||
Loading Object yplay
|
||||
Loading Object reg-ios
|
||||
Program size is 3424 longs
|
||||
Compiled 1783 Lines of Code in 0,141 Seconds
|
||||
Program size is 3552 longs
|
||||
1 Constants folded
|
||||
Compiled 1878 Lines of Code in 0,171 Seconds
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>rename *.binary *.bin
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>move *.bin ".\bin\sdcard\system"
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\admtest.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\basic.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\beltest.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\charmap.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\eram.bin
|
||||
|
@ -411,7 +406,6 @@ H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\fterm.bin
|
|||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\g0test.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\hplay.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\keycode.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\perplex.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\ramtest.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\regime.bin
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios\rom.bin
|
||||
|
@ -430,6 +424,7 @@ H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>copy .\forth\*.*
|
|||
.\forth\cog.lib
|
||||
.\forth\debug.mod
|
||||
.\forth\error.txt
|
||||
.\forth\fib.mod
|
||||
.\forth\hplay.mod
|
||||
.\forth\hss.lib
|
||||
.\forth\key.lib
|
||||
|
@ -443,7 +438,7 @@ H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>copy .\forth\*.*
|
|||
.\forth\wav.lib
|
||||
.\forth\words.mod
|
||||
.\forth\wplay.mod
|
||||
20 Datei(en) kopiert.
|
||||
21 Datei(en) kopiert.
|
||||
|
||||
H:\Projekte\Technik\hive 1\software\TriOS\TriOS-SVN\hive-trios>copy .\system\sonstiges ".\bin\sdcard\system"
|
||||
.\system\sonstiges\BLUE.COL
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue