-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Robson
committed
Nov 24, 2023
1 parent
1b94cce
commit 211eb76
Showing
8 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# *************************************************************************************** | ||
# *************************************************************************************** | ||
# | ||
# Name : Makefile | ||
# Author : Paul Robson ([email protected]) | ||
# Date : 20th November 2023 | ||
# Reviewed : No | ||
# Purpose : Main firmware makefile, most of the work is done by CMake. | ||
# | ||
# *************************************************************************************** | ||
# *************************************************************************************** | ||
|
||
ifeq ($(OS),Windows_NT) | ||
include documents\common.make | ||
else | ||
include documents/common.make | ||
endif | ||
|
||
BINARY = firmware | ||
RELEASEFILE = neo6502.zip | ||
|
||
DOCDIR = documents$(S)release$(S) | ||
|
||
DOCUMENTS = $(DOCDIR)*.pdf $(DOCDIR)*.txt $(BINDIR)neo6502.inc | ||
BINARIES = $(BINDIR)firmware.uf2 $(BINDIR)firmware.elf | ||
|
||
all: | ||
zip -r -j release$(S)$(RELEASEFILE) $(DOCUMENTS) $(BINARIES) | ||
always: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
Release Notes | ||
------------- | ||
|
||
This is an initial testing/tinkering release. You can't do much with it. It has WozMon and Apple 1 Integer BASIC in, the latter being started | ||
by E000R in WozMon. | ||
This is an initial testing/tinkering release. You can't do much with it. | ||
|
||
It has WozMon Fig-Forth and Apple 1 Integer BASIC built in. | ||
|
||
FORTH is started with 400R, BASIC with E000R | ||
|
||
File save/load doesn't exist on either. | ||
|
||
Note : WozMon works the same, but the address vectors are different. See the API Documentation. So the example printing programs won't | ||
work. | ||
|
@@ -18,5 +23,5 @@ All suggestions are welcome. | |
|
||
Paul Robson. | ||
[email protected] | ||
23 Nov 2023 | ||
24 Nov 2023 | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// | ||
// This file is automatically generated | ||
// | ||
#define PROMPT "*** Olimex Neo6502 RetroComputer ***\r\r(Build 152 23-Nov-23)\r\r" | ||
#define PROMPT "*** Olimex Neo6502 RetroComputer ***\r\r(Build 160 24-Nov-23)\r\r" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters