mirror of
https://github.com/thiagoauler/apple1.git
synced 2024-11-25 20:32:02 +00:00
creating interface i/o functions
This commit is contained in:
parent
723bf8ade8
commit
f86abbe0e6
35
src/interface.c
Normal file
35
src/interface.c
Normal file
@ -0,0 +1,35 @@
|
||||
#include <curses.h>
|
||||
#include "inc/interface.h"
|
||||
#include "inc/memory.h"
|
||||
|
||||
void io_init()
|
||||
{
|
||||
initscr();
|
||||
noecho();
|
||||
cbreak();
|
||||
nodelay(stdscr, TRUE);
|
||||
}
|
||||
|
||||
void input()
|
||||
{
|
||||
int ch = getch();
|
||||
if (ch != ERR)
|
||||
{
|
||||
keyboard_buffer = ch | 0x80;
|
||||
keyboard_control = 0xFF;
|
||||
}
|
||||
}
|
||||
|
||||
void output()
|
||||
{
|
||||
// display is ready to ouptup
|
||||
if (display_buffer & 0x80)
|
||||
{
|
||||
// outputs the buffer character
|
||||
display_buffer = display_buffer & 0x7F;
|
||||
addch(display_buffer);
|
||||
//refresh();
|
||||
}
|
||||
|
||||
//refresh();
|
||||
}
|
Loading…
Reference in New Issue
Block a user