From 1ef561585ff4ff52ad445af27f5e1bdca2b9899a Mon Sep 17 00:00:00 2001 From: cflem Date: Sat, 5 Sep 2015 23:09:47 -0700 Subject: Fixed glitch involving absolute paths --- sh.s | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sh.s b/sh.s index e993a30..edc6710 100644 --- a/sh.s +++ b/sh.s @@ -176,6 +176,8 @@ parse1: je subz cmp byte [r8+r15], 0x2f je sabsf + cmp byte [r8+r15], 0x2e + je sabsf parse1r: dec r8 @@ -184,6 +186,8 @@ parse1r: jmp parse1 sabsf: + cmp r8, 0x1 + jg parse1r mov r13, 0x1 jmp parse1r -- cgit v1.2.3