Remove RAM memory section
Replace RAM section with SDRAM. Really this makes no difference than before we added SDRAM except the name is different. In hardware, the SDRAM acts the same way and is located in the same space as the RAM was previously.
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
MEMORY
|
||||
{
|
||||
ZP: start = $0, size = $100, type = rw, define = yes;
|
||||
RAM: start = $0200, size = $3D00, type = rw, define = yes;
|
||||
SDRAM: start = $4000, size = $3ff0, type = rw, define = yes;
|
||||
SDRAM: start = $200, size = $7cf0, type = rw, define = yes;
|
||||
ROM: start = $8000, size = $8000, fill = yes, fillval = $ff, file = %O;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user