1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 08:58:39 +11:00

ed: auto increment ED_CURLINE

This increases the binary by 1 instruction, but feels useful following
at least GNU ed's behavior.
This commit is contained in:
nopjmp 2019-10-21 23:24:17 -05:00
parent a7aa2fc702
commit b52730818a

View File

@ -144,6 +144,8 @@ edMain:
inc hl inc hl
jr .doP jr .doP
.doPEnd: .doPEnd:
; increment ED_CURLINE to mimic Unix ed behavior
inc hl
ld (ED_CURLINE), hl ld (ED_CURLINE), hl
jp .mainLoop jp .mainLoop
.error: .error: