From af60d32679ea87ff56923726a4df4330f9437ede Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Mon, 21 Mar 2022 14:06:12 -0500 Subject: [PATCH] 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. --- sw/link.ld | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sw/link.ld b/sw/link.ld index 0d2897b..172f0a5 100644 --- a/sw/link.ld +++ b/sw/link.ld @@ -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; }