diff options
| author | cflem <carson.fl3ming@gmail.com> | 2015-09-05 23:09:47 -0700 |
|---|---|---|
| committer | cflem <carson.fl3ming@gmail.com> | 2015-09-05 23:09:47 -0700 |
| commit | 1ef561585ff4ff52ad445af27f5e1bdca2b9899a (patch) | |
| tree | b5329bb77e489aa0eafa53370fcea64a07404407 | |
| parent | 5c87fe0c23ada0ec819714bb87d65909da0e07ea (diff) | |
| download | dbsh-1ef561585ff4ff52ad445af27f5e1bdca2b9899a.tar.gz | |
Fixed glitch involving absolute paths
| -rw-r--r-- | sh.s | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |
