]> cloudbase.mooo.com Git - z180-stamp-cpm3.git/blobdiff - cbios/boot.180
Make ASCI1 the default console device after cold boot.
[z180-stamp-cpm3.git] / cbios / boot.180
index c0ecc1155972c462658b1c4d84ea3f98b8d42e18..fcf00ae4657185835053f987d4c05121079ed152 100644 (file)
@@ -6,13 +6,14 @@
 \r
        public  f_cpu\r
 \r
-       extrn   ?boot,?conin\r
+       extrn   boot,?conin\r
        extrn   pr.inln,pr.crlf,pr.dec,pr.decl\r
        extrn   ioini1l,msginit,mmuinit,intinit,cpu_frq\r
        extrn   prt0ini,gs_rtc\r
        extrn   @civec,@covec,@aivec,@aovec,@lovec\r
-       extrn   @cbnk,?bnksl\r
+       extrn   @cbnk,?move,?xmove\r
 \r
+       include version.inc\r
        include config.inc\r
        include z180reg.inc\r
 \r
@@ -45,11 +46,10 @@ hwinit:
        ld      hl,hwini_tab\r
        call    ioini1l\r
        ld      a,0c3h\r
-       ld      hl,?boot\r
+       ld      hl,boot\r
        ld      (0),a\r
        ld      (1),hl\r
 hwini_skip:\r
-       call    mmuinit         ; setup mmu registers\r
        call    msginit\r
        call    cpu_frq\r
        ld      (f_cpu),hl\r
@@ -57,7 +57,8 @@ hwini_skip:
        ret\r
 \r
 ?init:\r
-       ld      hl,1000000000000000b    ; assign console to AVRCON:\r
+;      ld      hl,1000000000000000b    ; assign console to AVRCON:\r
+       ld      hl,0010000000000000b    ; assign console to ASCI1:\r
        ld      (@civec),hl\r
        ld      (@covec),hl\r
        ld      hl,0000000000000000b    ; assign printer to nothing:\r
@@ -77,9 +78,9 @@ hwini_skip:
        ld      (@cbnk),a               ; right now in bank 0\r
 \r
        call    pr.inln                 ; print signon message\r
-       db      13,10,13,10,'CP/M Version 3.0, Z180-Stamp BIOS',13,10,0\r
-\r
-       call    pr.inln\r
+       db      13,10,13,10,'CP/M Version 3.0, Z180-Stamp BIOS v'\r
+       defvers\r
+       db      13,10\r
        db      'Estimated CPU clock [Hz]: ',0\r
 \r
        ld      hl,(f_cpu)\r
@@ -89,79 +90,58 @@ hwini_skip:
        ret\r
 \r
 \r
-       cseg                    ; boot loading must be done from resident memory\r
+       cseg            ; boot loading must be done from resident memory\r
 \r
 ;      This version of the boot loader loads the CCP from a file\r
 ;      called CCP.COM on the system drive (A:).\r
 \r
-\r
+       ; First time, load the A:CCP.COM file into TPA\r
 ?ldccp:\r
-                               ; First time, load the A:CCP.COM file into TPA\r
        ld      c,resetdsk\r
        call    bdos\r
        xor     a\r
-       ld      (ccp$fcb+15),a  ; zero extent\r
+       ld      (ccp$fcb+15),a          ; zero extent\r
        ld      hl,0\r
-       ld      (fcb$nr),hl     ; start at beginning of file\r
+       ld      (fcb$nr),hl             ; start at beginning of file\r
        ld      de,ccp$fcb\r
-       ld      c,open          ; open file containing CCP\r
+       ld      c,open                  ; open file containing CCP\r
        call    bdos\r
        inc     a\r
-       jp      z,no$ccp        ; error if no file...\r
+       jp      z,no$ccp                ; error if no file...\r
        ld      de,0100h\r
        ld      c,setdma                ; start of TPA\r
        call    bdos\r
        ld      de,128\r
-       ld      c,setmulti      ; allow up to 16k bytes\r
+       ld      c,setmulti              ; allow up to 16k bytes\r
        call    bdos\r
        ld      de,ccp$fcb\r
-       ld      c,read          ; load the thing\r
-       call    bdos            ; read records\r
-                               ; now,\r
-                               ;   copy CCP to bank 0 for reloading\r
-       ld      hl,0100h\r
-       ld      bc,ccpsize      ; clone 3K, just in case\r
-       ld      a,(@cbnk)\r
-       push    af              ; save current bank\r
-ld$1:\r
-       ld      a,tpa$bank\r
-       call    ?bnksl          ; select TPA\r
-       ld      a,(hl)\r
-       push    af              ; get a byte\r
-       ld      a,2\r
-       call    ?bnksl          ; select extra bank\r
-       pop     af\r
-       ld      (hl),a          ; save the byte\r
-       cpi                     ; bump pointer, drop count\r
-       jp      pe,ld$1\r
-       pop     af\r
-       call    ?bnksl          ; restore original bank\r
-       ret\r
+       ld      c,read                  ; load the thing\r
+       call    bdos                    ; read records\r
 \r
-no$ccp:                                ; here if we couldn't find the file\r
-       call    pr.inln         ; report this...\r
-       db      13,10,'BIOS Err on A: No CCP.COM file',0\r
-\r
-       call    ?conin          ; get a response\r
-       jp      ?ldccp          ; and try again\r
+       ; now, copy CCP to bank 0 for reloading\r
 \r
+       ld      bc,2*256 + tpa$bank     ; c: src$bnk, b: dst$bnk\r
+       jr      mov_ccp\r
 \r
+       ; just copy in the other direction\r
 ?rlccp:\r
+       ld      bc,tpa$bank*256 + 2     ; c: src$bnk, b: dst$bnk\r
+mov_ccp:\r
+       call    ?xmove\r
        ld      hl,0100h\r
-       ld      bc,ccpsize      ; clone 3K\r
-rl$1:\r
-       ld      a,2\r
-       call    ?bnksl          ; select extra bank\r
-       ld      a,(hl)          ; get a byte\r
-       ex      af,af'\r
-       ld      a,tpa$bank\r
-       call    ?bnksl          ; select TPA\r
-       ex      af,af'\r
-       ld      (hl),a          ; save the byte\r
-       cpi                     ; bump pointer, drop count\r
-       jp      pe,rl$1\r
+       ld      d,h\r
+       ld      e,l\r
+       ld      bc,ccpsize              ; clone 3K, just in case\r
+       call    ?move\r
        ret\r
 \r
+no$ccp:                                        ; here if we couldn't find the file\r
+       call    pr.inln                 ; report this...\r
+       db      13,10,'BIOS Err on A: No CCP.COM file',0\r
+\r
+       call    ?conin                  ; get a response\r
+       jr      ?ldccp                  ; and try again\r
+\r
 \r
 ccp$fcb:db     1,'CCP     ','COM',0,0,0,0\r
        ds      16\r
@@ -175,7 +155,7 @@ hwini_tab:
        db      dcntl,CWAITIO   ;wait states\r
        db      ccr,M_NCD       ;No Clock Divide\r
        db      cmr,PHI_X2      ;X2 Clock Multiplier\r
-;TODO: db      omr,    ;Operation Mode Control Register\r
+       db      omcr,~M_IOC     ;Operation Mode Control Register\r
 hwini0_e:\r
        db      0               ;stop mark\r
 \r