From 1a64fa4d62474c22d0480ebcab90ec634c38485e Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Wed, 20 Apr 2022 13:54:07 -0500 Subject: [PATCH] Change kernel format to bin for merge We don't have the bootloader reading o65 files right now, so we need to keep the kernel as a bin file until that is added. --- sw/kernel/link.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw/kernel/link.ld b/sw/kernel/link.ld index 806c93f..96adc89 100644 --- a/sw/kernel/link.ld +++ b/sw/kernel/link.ld @@ -2,11 +2,11 @@ MEMORY { ZP: start = $0, size = $100, type = rw, define = yes; SDRAM: start = $200, size = $7cf0, type = rw, define = yes; - ROM: start = $C000, size = $4000, type = rw, define = yes; + ROM: start = $D000, size = $3000, type = rw, define = yes; } FILES { - %O: format = o65; + %O: format = bin; } SEGMENTS {