-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- port of Microsoft OSI BASIC now more compatible to the original - changed text input to kernel routine - USR() now uses original addresses - A,X,Y are now passed to and from SYS using memory $0D,$0E,$0F - DIR now is LOAD"$" - updated basic files, since token order was changed - write to $DF04 for timestamping - fixed bug in upstream TaliForth2 - link to the review of Hans Otten - fixed some minor typos Signed-off-by: Sven Oliver Moll <svolli@svolli.de>
- Loading branch information
Sven Oliver Moll
committed
Oct 9, 2024
1 parent
587c9df
commit 69be525
Showing
18 changed files
with
193 additions
and
94 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
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 |
---|---|---|
|
@@ -60,4 +60,4 @@ endif | |
sx4: $(targets) | ||
|
||
clean: | ||
$(RM) lib/*.o $(SORBUS_LIB) $(targets) | ||
$(RM) */*.o $(SORBUS_LIB) $(targets) |
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
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
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
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,17 +1,29 @@ | ||
This project uses software that was developed under non=free licenses. | ||
This project uses software that was developed under non-free licenses. | ||
|
||
src/65c02/native_osi_basic.s: | ||
src/65c02/native_rom/osi_basic.s: | ||
This is OSI BASIC V1.0 REV 3.2 | ||
Written by Richard W. Weiland | ||
Copyright 1977 Microsoft Co. | ||
It has been used with computers manufactured by Ohio Scientific Inc. | ||
Reverse engineering was started by Michael Steil | ||
Source code is based on version by Grant Searle for his simple 6502 computer. | ||
|
||
src/65c02/native_tim.s: | ||
src/65c02/native_rom/tim.s: | ||
This is the Terminal Interface Monitor (TIM) of the MOS 6530-004. | ||
Copyright 1976 MOS Technology | ||
|
||
src/65c02/native_woz.s: | ||
This is WozMon of the Apple 1 Computer. | ||
src/65c02/native_rom/woz.s: | ||
This is WozMon of the Apple 1 Computer | ||
Written by Steve Wozniak | ||
Copyright 1976 Apple Computer Company | ||
|
||
src/65c02/native_sx4/inst-ass.s: | ||
This is Instant 6502 Assembler for KIM-1 | ||
Written by Alan Cashin | ||
Released as public domain | ||
|
||
|
||
However, all of this code has been modified to some degree to fit this | ||
project, the Sorbus Computer. | ||
project, the Sorbus Computer. The focus is always on make things work good on | ||
the hardware and not on keeping code as original as possible. | ||
|
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
Oops, something went wrong.