From b52730818acc01ee5013032e963fd8da047cbea4 Mon Sep 17 00:00:00 2001 From: nopjmp Date: Mon, 21 Oct 2019 23:24:17 -0500 Subject: [PATCH] ed: auto increment ED_CURLINE This increases the binary by 1 instruction, but feels useful following at least GNU ed's behavior. --- apps/ed/main.asm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ed/main.asm b/apps/ed/main.asm index fbdd3f8..3672c53 100644 --- a/apps/ed/main.asm +++ b/apps/ed/main.asm @@ -144,6 +144,8 @@ edMain: inc hl jr .doP .doPEnd: + ; increment ED_CURLINE to mimic Unix ed behavior + inc hl ld (ED_CURLINE), hl jp .mainLoop .error: