-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
---------------- - Add the CT60_BOOT_LOG parameter in flash for writes to boot.log the stdout of the AUTO folder files (file sdram.S). - Add memvalid, memval2, memval3 test for the SDRAM init (files sdram.S and init_par.S). - Fix for negative temperature (file xbios2.S). - Fix CTCM frequency error (file sdram.S).
- Loading branch information
Didier Méquignon
committed
Jul 12, 2005
1 parent
2b7fb36
commit 1eb9075
Showing
29 changed files
with
1,439 additions
and
1,175 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resetnvm.prg | ||
= | ||
resetnvm.s |
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,12 @@ | ||
; Nvmaccess() | ||
clr.l -(sp) | ||
clr.w -(sp) | ||
clr.w -(sp) | ||
move.w #2,-(sp) | ||
move.w #46,-(sp) | ||
trap #14 | ||
lea.l 12(sp),sp | ||
|
||
; Pterm0 | ||
clr.w -(sp) | ||
trap #1 |
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
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
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
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
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,5 +1,5 @@ | ||
/* TOS 4.04 Xbios for the CT60 board | ||
* Didier Mequignon 2002 December, e-mail: [email protected] | ||
* Didier Mequignon 2002-2005, e-mail: [email protected] | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
|
@@ -30,6 +30,7 @@ | |
#define CT60_CACHE_DELAY 2 | ||
#define CT60_BOOT_ORDER 3 | ||
#define CT60_CPU_FPU 4 | ||
#define CT60_BOOT_LOG 5 | ||
#define CT60_SAVE_NVRAM_1 7 | ||
#define CT60_SAVE_NVRAM_2 8 | ||
#define CT60_SAVE_NVRAM_3 9 | ||
|
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,5 +1,5 @@ | ||
/* TOS 4.04 Xbios vars for the CT60 board | ||
* Didier Mequignon 2002-2004, e-mail: [email protected] | ||
* Didier Mequignon 2002-2005, e-mail: [email protected] | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
|
@@ -20,11 +20,13 @@ | |
#define _VARS_H | ||
|
||
#define etv_critic 0x404 | ||
#define memvalid 0x420 | ||
#define memctrl 0x424 | ||
#define resvalid 0x426 | ||
#define resvector 0x42A | ||
#define phystop 0x42E | ||
#define _memtop 0x436 | ||
#define memval2 0x43A | ||
#define flock 0x43E | ||
#define _bootdev 0x446 | ||
#define sshiftmd 0x44C | ||
|
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,5 +1,5 @@ | ||
/* TOS 4.04 Boot order patch for the CT60 board | ||
* Didier Mequignon 2003 November, e-mail: [email protected] | ||
/* TOS 4.04 Boot memory patch for the CT60 board | ||
* Didier Mequignon 2003-2005, e-mail: [email protected] | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
|
@@ -27,4 +27,25 @@ begin1: | |
jmp init_flash_parameters | ||
end1: | ||
|
||
.align 2 | ||
.long 0x1B4 | ||
.long end2-begin2 | ||
begin2: | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
nop | ||
end2: | ||
|
||
|
Oops, something went wrong.