소스 검색

Fix broken shell

When I zasm-ified the shell a couple of dozens of commits ago, I
inverted push and pops...
pull/10/head
Virgil Dupras 5 년 전
부모
커밋
d2c6e21c64
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      kernel/shell.asm

+ 2
- 1
kernel/shell.asm 파일 보기

@@ -65,6 +65,7 @@
shellInit:
xor a
ld (SHELL_MEM_PTR), a
ld (SHELL_MEM_PTR+1), a
ld (SHELL_BUF), a

; print welcome
@@ -178,7 +179,7 @@ shellParse:
; let's have DE point to the jump line
ld a, SHELL_CMD_ARGS_MAXSIZE
call addDE
push ix \ pop de
push de \ pop ix
; Ready to roll!
call callIX
cp 0


불러오는 중...
취소
저장