move fromhost/tohost for moonlight into ram

This commit is contained in:
Eyck Jentzsch 2025-05-23 20:24:31 +02:00
parent 5353d7d258
commit 82bd81bb60

View File

@ -171,10 +171,10 @@ SECTIONS
.stack ORIGIN(ram) + LENGTH(ram) - __stack_size :
{
PROVIDE( _heap_end = . );
PROVIDE( tohost = . );
PROVIDE( fromhost = . );
. = __stack_size;
PROVIDE( _sp = . );
} >ram AT>ram :ram
PROVIDE( tohost = 0xfffffff0 );
PROVIDE( fromhost = 0xfffffff8 );
}