소스 검색

stdio: little tweaks

pull/10/head
Virgil Dupras 5 년 전
부모
커밋
921a109749
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      kernel/stdio.asm

+ 6
- 6
kernel/stdio.asm 파일 보기

@@ -59,12 +59,10 @@ printstr:
pop af
ret

; print A characters from string that HL points to
; print B characters from string that HL points to
printnstr:
push bc
push hl

ld b, a
.loop:
ld a, (hl) ; load character to send
call stdioPutC
@@ -77,22 +75,24 @@ printnstr:
ret

printcrlf:
push af
ld a, ASCII_CR
call stdioPutC
ld a, ASCII_LF
call stdioPutC
pop af
ret

; Print the hex char in A
printHex:
push af
push bc
push hl
ld hl, STDIO_HEX_FMT
call fmtHexPair
ld a, 2
ld b, 2
call printnstr
pop hl
pop af
pop bc
ret

; Print the hex pair in HL


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