changeset 1217:105c50406cb2

Removed .60hz and .50hz targets
author boisy
date Tue, 01 Jul 2003 02:16:38 +0000
parents d2c85aaaccb8
children 0216c89fdd96
files level1/cmds/os9gen.asm level1/cmds/prompt.asm rules.mak
diffstat 3 files changed, 13 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/level1/cmds/os9gen.asm	Tue Jul 01 02:15:55 2003 +0000
+++ b/level1/cmds/os9gen.asm	Tue Jul 01 02:16:38 2003 +0000
@@ -68,12 +68,12 @@
 u0496    rmb   7018
 size     equ   .
 
-name     fcs   /OS9gen/
+name     fcs   /OS9Gen/
          fcb   edition
 
          IFNE  DOHELP
 HelpMsg  fcb   C$LF
-         fcc   "Use (CAUTION): OS9GEN </devname> [-s]"
+         fcc   "Use (CAUTION): OS9Gen </devname> [-s]"
          fcb   C$LF
          fcc   " ..reads (std input) pathnames until EOF,"
          fcb   C$LF
@@ -81,7 +81,7 @@
          fcb   C$LF
          fcc   " -s = single drive operation"
          fcb   C$LF
-         fcc   " -t=bootrack  set boot track file"
+         fcc   " -t=boottrack = set boot track file"
          fcb   C$LF,C$CR
          ENDC
          fcc   "Can't find: "
@@ -246,7 +246,9 @@
          lbcs  Bye			branch if error
          ldu   <statptr			retrieve static pointer
          bsr   L032F
-L02BB    leax  sectbuff,u
+
+* Read Bootlist file, line by line
+ReadBLst leax  sectbuff,u
          ldy   #256
          clra  				standard input
          os9   I$ReadLn 		read line
@@ -256,7 +258,7 @@
          cmpa  #C$CR			CR?
          beq   L0312			branch if so
          cmpa  #'*			comment?
-         beq   L02BB			continue reading if so
+         beq   ReadBLst			continue reading if so
          lda   #READ.			else use read perms
          os9   I$Open   		open file at X (line we read)
          bcs   L031A			branch if error
@@ -272,7 +274,7 @@
          lbne  Bye
          os9   I$Close  
          clr   <parmpath
-         bra   L02BB
+         bra   ReadBLst
 L02F9    tfr   y,d
          leax  d,x
          stx   <u0015
@@ -284,7 +286,7 @@
          bcs   L0328
 L030C    tst   <parmpath
          bne   L02DD
-         bra   L02BB
+         bra   ReadBLst
 L0312    cmpb  #E$EOF			end of file?
          bne   L0328			branch if not
          bsr   L033D
--- a/level1/cmds/prompt.asm	Tue Jul 01 02:15:55 2003 +0000
+++ b/level1/cmds/prompt.asm	Tue Jul 01 02:16:38 2003 +0000
@@ -22,6 +22,7 @@
          mod   eom,name,tylg,atrv,start,size
 
          org   0
+inputbuf rmb   16
 devopts  rmb   32
          rmb   450
 size     equ   .
@@ -45,9 +46,11 @@
          bcs   exit
          clr   (PD.EKO-PD.OPT),x
          os9   I$SetStt		set 'em
+         leax  inputbuf,u
          ldy   #$0001		one character
          os9   I$Read		read one char from stderr
          clrb  
+         leax  devopts,u
          inc   (PD.EKO-PD.OPT),x	turn on echo
          os9   I$SetStt		set 'em
          leax  cr,pcr
--- a/rules.mak	Tue Jul 01 02:15:55 2003 +0000
+++ b/rules.mak	Tue Jul 01 02:16:38 2003 +0000
@@ -3,7 +3,7 @@
 # These macros should change according to where the base directory of the
 # OS-9 source tree is located
 BASEDIR		= $(HOME)/os9
-OS9TOOLSDIR	= /usr/local/bin
+OS9TOOLSDIR	= $(HOME)/bin
 DEFDIR		= $(BASEDIR)/defs
 DSKDIR		= $(BASEDIR)/dsks
 
@@ -85,14 +85,6 @@
 %.io: %.asm
 	$(AS) $(AFLAGS) $< $(ASOUT)$@
 
-# 60Hz clocks
-%.60hz: %.asm
-	$(AS) -aTPS=60 $(AFLAGS) $< $(ASOUT)$@
-
-# 50Hz clocks
-%.50hz: %.asm
-	$(AS) -aTPS=50 $(AFLAGS) $< $(ASOUT)$@
-
 # All other modules
 %: %.asm
 	$(AS) $(AFLAGS) $< $(ASOUT)$@