Skip to content

Commit

Permalink
remove $¨| (even in the eForth source it's unclear what it does)
Browse files Browse the repository at this point in the history
  • Loading branch information
TG9541 committed Jun 15, 2017
1 parent bf26d50 commit c2ee779
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions forth.asm
Original file line number Diff line number Diff line change
Expand Up @@ -3166,10 +3166,9 @@ DOSTR:
LINK = .
.db (COMPO+3)
.ascii '$"|'
.endif
STRQP:
CALL DOSTR
RET
JRA DOSTR
.endif

; ."| ( -- )
; Run time routine of ." .
Expand Down Expand Up @@ -4381,7 +4380,7 @@ ABRTQ:
.endif
STRQ:
CALL COMPI
CALL STRQP
CALL DOSTR
STRCQLOC:
JP STRCQ

Expand Down Expand Up @@ -4449,7 +4448,7 @@ SNAME:
CALL AT
CALL SWAPP
JP STORE ; save code pointer
PNAM1: CALL STRQP
PNAM1: CALL DOSTR
.db 5
.ascii " name" ; null input
JP ABOR1
Expand Down

1 comment on commit c2ee779

@TG9541
Copy link
Owner Author

@TG9541 TG9541 commented on c2ee779 Sep 28, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like this caused issue #75. Yet another reason for building test automation, see issue #70.

Please sign in to comment.