From 27149338e46c243414e628e2feac398dd8e7e897 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Mon, 4 Nov 2019 10:04:09 -0500 Subject: [PATCH] stdio: fix typo --- kernel/stdio.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/stdio.asm b/kernel/stdio.asm index c248e54..ad43fed 100644 --- a/kernel/stdio.asm +++ b/kernel/stdio.asm @@ -9,7 +9,7 @@ ; GetC: Blocks until a character is read from the device and return that ; character in A. ; -; PutC: Write character specified onto the device. +; PutC: Write character specified in A onto the device. ; ; *** Defines *** ; STDIO_GETC: address of a GetC routine