view level2/modules/init.asm @ 1315:23c681a015e1

cc3go has been renamed to SysGo
author boisy
date Thu, 04 Sep 2003 19:11:31 +0000
parents d13864ef3317
children 8e804211cb25
line wrap: on
line source

********************************************************************
* Init - OS-9 Level Two Configuration module
*
* $Id$
*
* Ed.    Comments                                       Who YY/MM/DD
* ------------------------------------------------------------------
* 204    Original OS-9 L2 Tandy distribution
* 205    Added CC3IO and Clock sections                 BGP 98/10/12
* 205b   Removed clock information from here            BGP 98/10/20
*   1    Restarted edition number back to 1,            BGP 03/01/08
*        removed CMDS/cc3go reference and just
*        have cc3go so that in certain cases, cc3go
*        can be in the bootfile, and so that ROMmed
*        systems don't have to have a special init
*        module.

         nam   Init
         ttl   OS-9 Level Two Configuration module

         ifp1  
         use   defsfile
         endc  

tylg     set   Systm+$00
atrv     set   ReEnt+rev
rev      set   $00
edition  set   1

         mod   eom,name,tylg,atrv,$0FE0,$0015

***** USER MODIFIABLE DEFINITIONS HERE *****

* Init table
start    equ   *
         fcb   $27        number of IRQ polling entires
         fdb   DefProg    offset to program to fork
         fdb   DefDev     offset to default disk device
         fdb   DefCons    offset to default console device
         fdb   DefBoot    offset to boot module name
         fcb   $01        write protect flag (?)
         fcb   Level      OS level
         fcb   OS9Vrsn    OS version
         fcb   OS9Major   OS major revision
         fcb   OS9Minor   OS minor revision
         fcb   $00        feature byte #1
         fcb   $00        feature byte #2
         fcb   0,0,0,0,0,0,0,0  reserved

* CC3IO section
         fcb   Monitor    monitor type
         fcb   0          mouse info
         fcb   $1E        key repeat start constant
         fcb   $03        key repeat delay constant

name     fcs   "Init"
         fcb   edition

DefProg  fcs   "SysGo"
DefDev   fcs   "/DD"
DefCons  fcs   "/Term"
DefBoot  fcs   "Boot"

         emod  
eom      equ   *
         end