aboutsummaryrefslogtreecommitdiff
path: root/examples/lowlevel/cartrom/rom.ld
blob: f3f9cd3c84ba6945d0865632729c501213d1814f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
MEMORY {
	ROM : ORIGIN = 0x1f000000, LENGTH = 256K
}

ENTRY (entry)

SECTIONS {
	.text :{
		*(.text)
	} >ROM
}