Files
CDi_MiSTer/sw/mpeg_video/sections_decoder.lds
Andre Zeps 0393f32cd0 FMV: Patch pl_mpeg for prediction of skipped macroblocks after the slices
- Fixes glitches on macroblock level at the bottom right
2026-02-22 14:12:37 +01:00

41 lines
692 B
Plaintext

OUTPUT_ARCH(riscv)
ENTRY(_start)
MEMORY
{
ram (wxai!r) : ORIGIN = 0x00000000, LENGTH = 13500
}
SECTIONS
{
__stack_size = 512;
/* Code and read-only data */
.text : {
*(.init) /* startup code */
*(.text*) /* main program code */
*(.rodata*) /* read-only data (const) */
} > ram
/* Zero-initialized data */
.bss : {
__bss_start = .;
*(.bss*)
*(.sbss*)
*(COMMON)
__bss_end = .;
} > ram
.noinit (NOLOAD) :
{
. = ALIGN(4);
*(.noinit .noinit.*)
} > ram
.stack : ALIGN(16)
{
. = __stack_size;
_stack_top = .;
} > ram
}