This commit is contained in:
flo66 2017-01-08 10:54:11 +01:00
parent 2beee17123
commit 8ec6d4b8af
4 changed files with 3 additions and 33 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,31 +0,0 @@
OUTPUT_ARCH(sh3)
ENTRY(initialize)
MEMORY
{
rom : o = 0x00300200, l = 512k
ram : o = 0x08100000, l = 64k /* pretty safe guess */
}
SECTIONS
{
.text : {
*(.pretext) /* init stuff */
*(.text)
} > rom
.rodata : {
*(.rodata)
*(.rodata.str1.4)
_romdata = . ; /* symbol for initialization data */
} > rom
.bss : {
_bbss = . ;
_bssdatasize = . ;
LONG(0); /* bssdatasize */
*(.bss) *(COMMON);
_ebss = . ;
} > ram
.data BLOCK(4) : AT(_romdata) {
_bdata = . ;
*(.data);
_edata = . ;
} > ram
}

View File

@ -1,3 +1,4 @@
#include "addresses.h"
#include "Sound4Calc.h"
@ -29,9 +30,9 @@ int main(void)
dprint(1, 10, "%d", !isSH3());
//PrintMini(1, 10, itoa(is_SH4, str, 10), 0);
dupdate();
dupdate();
key=getkey();
key=getkey();
switch(key)
{