home *** CD-ROM | disk | FTP | other *** search
- /* =========================================================
- FORTH.INI
- use file for default settings etc,...
- ========================================================= */
-
- include system\command.4th
- include system\util.4th
- include system\extend.4th
- bload bin\bios.bin >voc bios
-
- cd source
-
- mforth forth definitions gemdos also bios also command also
-
- /* Show system */
- cr
- cr
- .( Current Directory: ) pwd cr
- .( Free ST memory: ) -1 m_alloc . .( bytes)
- cr
- bios also
- s" NVDI" get_cookie
- #if cr .( NVDI Version: ) hex
- @ w@++ <# # # ascii . hold # #> drop type
- .( Date: )
- @ <# # # # # ascii . hold # # ascii . hold # # #> drop type
- decimal
- #else cr .( NVDI not installed)
- #endif
-
- s" Gnva" get_cookie
- #if cr .( Geneva cookie is set to: ) @ . #endif
- cr
- mforth command also
-
- order
- forth
-
-
-