From 3462c7fb14c89eaf6b2270681389c400d17e4b69 Mon Sep 17 00:00:00 2001 From: Andrew Jacobs Date: Mon, 27 Jun 2016 23:08:51 +0100 Subject: [PATCH] Incorporated changes for Ubuntu Mate on a Raspberry Pi --- Makefile | 2 +- program.cc | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ca033fe..fce02f7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CPPFLAGS=-O +CPPFLAGS=-O3 all: emu816 diff --git a/program.cc b/program.cc index f64b31e..44f714d 100644 --- a/program.cc +++ b/program.cc @@ -25,6 +25,8 @@ using namespace std; +#include + #include "mem816.h" #include "emu816.h" @@ -150,4 +152,4 @@ int main(int argc, char **argv) for (;;) loop(); return(0); -} \ No newline at end of file +}