changeset 1432:7edc948ddcaa

Fixed slight bug in 6809 version of gshell with regard to scrollbar, updated makefiles
author boisy
date Wed, 03 Dec 2003 13:29:33 +0000
parents 214ae6efd73e
children 2f6e800d7344
files 3rdparty/packages/multivue/cmds_6309/makefile 3rdparty/packages/multivue/cmds_6809/gshell.asm 3rdparty/packages/multivue/cmds_6809/makefile
diffstat 3 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/3rdparty/packages/multivue/cmds_6309/makefile	Wed Dec 03 13:26:26 2003 +0000
+++ b/3rdparty/packages/multivue/cmds_6309/makefile	Wed Dec 03 13:29:33 2003 +0000
@@ -9,7 +9,7 @@
 		$(6309L2)/cmds/grfdrv $(6309L2)/cmds/backup \
 		$(6309L2)/cmds/format $(6309L2)/cmds/free $(6309L2)/cmds/help
 CMDS		= gshell cocopr control demo fstat \
-		gcal gcalc gclock gport gprint
+		gcal gcalc gclock gport gprint gsort
 
 ALLOBJS		= $(OSCMDS) $(CMDS)
 
--- a/3rdparty/packages/multivue/cmds_6809/gshell.asm	Wed Dec 03 13:26:26 2003 +0000
+++ b/3rdparty/packages/multivue/cmds_6809/gshell.asm	Wed Dec 03 13:29:33 2003 +0000
@@ -1422,14 +1422,15 @@
          ldd   #21        Maximum # of screens
          IFNE  H6309
          divd  3,s        B= # of Y positions per screen
+* remainder = A, quotient = B
          ELSE
          clr   ,-s
 SCROLBRa inc   ,s
          subb  4,s
          sbca  #0
          bcc   SCROLBRa
-*         addb  4,s
-*         tfr   b,a
+         addb  4,s
+         tfr   b,a
          puls  b
          decb
          ENDC
@@ -1450,8 +1451,8 @@
          subb  4,s
          sbca  #0
          bcc   SCROLBRb
-*         addb  4,s
-*         tfr   b,a
+         addb  4,s
+         tfr   b,a
          puls  b
          decb
          ENDC
@@ -1679,11 +1680,11 @@
          subd  #$0001
          clr   ,-s
 CNTSCRNa inc   ,s
-         subb  #MAXICONS+1
+         subb  MAXICONS+1
          sbca  #0
          bcc   CNTSCRNa
-*         addb  #MAXICONS+1
-*         tfr   b,a
+         addb  MAXICONS+1
+         tfr   b,a
          puls  b
          decb
          ENDC
@@ -7687,7 +7688,6 @@
          pshs  x,y,u
          ldx   #10
          lbsr  MUL16
-         tfr   y,d
          ldb   6,s
          sex
          pshs  u
--- a/3rdparty/packages/multivue/cmds_6809/makefile	Wed Dec 03 13:26:26 2003 +0000
+++ b/3rdparty/packages/multivue/cmds_6809/makefile	Wed Dec 03 13:29:33 2003 +0000
@@ -6,7 +6,7 @@
 		$(6809L2)/cmds/grfdrv $(6809L2)/cmds/backup \
 		$(6809L2)/cmds/format $(6809L2)/cmds/free $(6809L2)/cmds/help
 CMDS		= gshell cocopr control demo fstat \
-		gcal gcalc gclock gport gprint
+		gcal gcalc gclock gport gprint gsort
 
 ALLOBJS		= $(OSCMDS) $(CMDS)