Ok so this is what im trying to do AVR BASIC Computer V0.1 | Hackaday.io
My first issue was i look up spieeprom.h and sepieeprom.cpp and open it in notepad++ .....look for #include <WProgram.h> and change it to #include <Arduino.h>
#include <Arduino.h> is sapose to set up older stuff i think???
now that i fixed that error i get this one ......
Arduino: 1.8.9 (Windows 7), Board: "ATmega1284, Standard, 1284P, 2.7v, Disabled (default), 16 MHz external"
In file included from C:\Users\Messcommand\AppData\Local\Arduino15\packages\MightyCore\hardware\avr\2.0.1\cores\MCUdude_corefiles/Arduino.h:28:0,
from sketch\AVR_BASIC_Computer_V0.1.ino.cpp:1:
AVR_BASIC_Computer_V0.1:309:33: error: variable 'keywords' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char keywords[] PROGMEM = {
^
AVR_BASIC_Computer_V0.1:401:33: error: variable 'func_tab' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char func_tab[] PROGMEM = {
^
AVR_BASIC_Computer_V0.1:416:31: error: variable 'to_tab' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char to_tab[] PROGMEM = {
^
AVR_BASIC_Computer_V0.1:421:33: error: variable 'step_tab' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char step_tab[] PROGMEM = {
^
AVR_BASIC_Computer_V0.1:426:34: error: variable 'relop_tab' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char relop_tab[] PROGMEM = {
^
AVR_BASIC_Computer_V0.1:446:36: error: variable 'highlow_tab' must be const in order to be put into read-only section by means of 'attribute((progmem))'
static unsigned char highlow_tab[] PROGMEM = {
^
exit status 1
variable 'keywords' must be const in order to be put into read-only section by means of 'attribute((progmem))'
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.