summaryrefslogtreecommitdiff
path: root/nuttx/configs/z80sim/src/z80_lowputc.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/z80sim/src/z80_lowputc.c')
-rw-r--r--nuttx/configs/z80sim/src/z80_lowputc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/configs/z80sim/src/z80_lowputc.c b/nuttx/configs/z80sim/src/z80_lowputc.c
index 4996272f9..269d37f92 100644
--- a/nuttx/configs/z80sim/src/z80_lowputc.c
+++ b/nuttx/configs/z80sim/src/z80_lowputc.c
@@ -69,13 +69,13 @@
********************************************************************************/
/********************************************************************************
- * Name: up_lowputc
+ * Name: z80_lowputc
*
* Data sent to port 0xbe are echoed on stdout by the simulation
*
********************************************************************************/
-void up_lowputc(char ch) __naked
+void z80_lowputc(char ch) __naked
{
_asm
ld hl, #2
@@ -87,13 +87,13 @@ void up_lowputc(char ch) __naked
}
/********************************************************************************
- * Name: up_lowgetc
+ * Name: z80_lowgetc
*
* Data from stdin can be received on port 0xbe in the simulation
*
********************************************************************************/
-char up_lowgetc(void) __naked
+char z80_lowgetc(void) __naked
{
_asm
in a, (0xbe)