-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed 68k project and startup files.
- Loading branch information
Showing
5 changed files
with
41 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
IDE68K version 2.1 project file - Do not edit this file - | ||
267555 "" "" "KIT68K=1;LOX_DBG=1" | ||
"C:\Ide68k\Lox68k\cstart_lox_dbg.asm" | ||
"C:\Ide68k\Lox68k\ffp_glue.asm" | ||
"C:\Ide68k\Lib\std68k.lib" | ||
"C:\Ide68k\Lox68k\chunk.c" | ||
"C:\Ide68k\Lox68k\chunk.h" | ||
"C:\Ide68k\Lox68k\compiler.c" | ||
"C:\Ide68k\Lox68k\compiler.h" | ||
"C:\Ide68k\Lox68k\disasm.c" | ||
"C:\Ide68k\Lox68k\disasm.h" | ||
"C:\Ide68k\Lox68k\machine.h" | ||
"C:\Ide68k\Lox68k\main.c" | ||
"C:\Ide68k\Lox68k\memory.c" | ||
"C:\Ide68k\Lox68k\memory.h" | ||
"C:\Ide68k\Lox68k\native.c" | ||
"C:\Ide68k\Lox68k\native.h" | ||
"C:\Ide68k\Lox68k\object.c" | ||
"C:\Ide68k\Lox68k\object.h" | ||
"C:\Ide68k\Lox68k\opcodes.h" | ||
"C:\Ide68k\Lox68k\scanner.c" | ||
"C:\Ide68k\Lox68k\scanner.h" | ||
"C:\Ide68k\Lox68k\table.c" | ||
"C:\Ide68k\Lox68k\table.h" | ||
"C:\Ide68k\Lox68k\value.c" | ||
"C:\Ide68k\Lox68k\value.h" | ||
"C:\Ide68k\Lox68k\vm.c" | ||
"C:\Ide68k\Lox68k\vm.h" | ||
"C:\Ide68k\Lox68k\nano_malloc.c" | ||
"C:\Ide68k\Lox68k\nano_malloc.h" | ||
"C:\Ide68k\Lox68k\kit_util.asm" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
; CSTART_LOX.ASM - C startup-code for Sirichote 68008 Lox port without debugging | ||
|
||
progstart equ $52000 ; Code starts here in ROM | ||
include cstart_common.asm |
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,4 @@ | ||
; CSTART_LOX_DBG.ASM - C startup-code for Sirichote 68008 Lox port with debugging | ||
|
||
progstart equ $44000 ; Code starts here in ROM | ||
include cstart_common.asm |