Skip to content
Snippets Groups Projects
Commit 17af89d1 authored by Bernard Blackham's avatar Bernard Blackham
Browse files

To rom Q - COMPLETELY WORKS!

parent 8209e6e9
No related merge requests found
...@@ -156,10 +156,10 @@ int main() { ...@@ -156,10 +156,10 @@ int main() {
display_init(); display_init();
set_msg(" HELLO "); set_msg(" HELLO ");
delay(1000);
unlock(); /* enable interrupts */ unlock(); /* enable interrupts */
delay(1000);
set_msg(" CRUEL "); set_msg(" CRUEL ");
//comm_init(); //comm_init();
......
#include "vend.h" #include "vend.h"
#include "chime.h"
#include "sci.h" #include "sci.h"
char sci_tx_buf[BUFFER_LEN]; char sci_tx_buf[BUFFER_LEN];
...@@ -56,8 +55,6 @@ void sci_rx_int() { ...@@ -56,8 +55,6 @@ void sci_rx_int() {
} }
void sci_interrupt_serial() { void sci_interrupt_serial() {
chime_start();
if (_io_ports[M6811_SCSR] & M6811_RDRF) sci_rx_int(); if (_io_ports[M6811_SCSR] & M6811_RDRF) sci_rx_int();
if (_io_ports[M6811_SCSR] & M6811_OR) if (_io_ports[M6811_SCSR] & M6811_OR)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment