New sw folders

This commit is contained in:
Byron Lathi
2024-10-14 23:48:16 -07:00
parent bc9b04853c
commit 21efb8ace8
11 changed files with 198 additions and 3 deletions

39
sw/kernel/Makefile Normal file
View File

@@ -0,0 +1,39 @@
CC=../toolchain/cc65/bin/cl65
LD=../toolchain/cc65/bin/cl65
CFLAGS=-T -t none -I. --cpu "65C02"
LDFLAGS=-C link.ld -m $(NAME).map
NAME=bootloader
BIN=$(NAME).bin
HEX=$(NAME).hex
LISTS=lists
SRCS=$(wildcard *.s) $(wildcard *.c)
SRCS+=$(wildcard **/*.s) $(wildcard **/*.c)
OBJS+=$(patsubst %.s,%.o,$(filter %s,$(SRCS)))
OBJS+=$(patsubst %.c,%.o,$(filter %c,$(SRCS)))
# Make sure the kernel linked to correct address, no relocation!
all: $(HEX)
$(HEX): $(BIN)
objcopy --input-target=binary --output-target=verilog $(BIN) $(HEX)
$(BIN): $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
%.o: %.c $(LISTS)
$(CC) $(CFLAGS) -l $(LISTS)/$<.list -c $< -o $@
%.o: %.s $(LISTS)
$(CC) $(CFLAGS) -l $(LISTS)/$<.list -c $< -o $@
$(LISTS):
mkdir -p $(addprefix $(LISTS)/,$(sort $(dir $(SRCS))))
.PHONY: clean
clean:
rm -rf $(OBJS) $(BIN) $(HEX) $(LISTS) $(NAME).map

9
sw/kernel/kernel.s Normal file
View File

@@ -0,0 +1,9 @@
.segment "ENTRY"
.addr main
.code
main:
bra main

30
sw/kernel/link.ld Normal file
View File

@@ -0,0 +1,30 @@
MEMORY
{
RAM: start = $0000, size = $200;
KERNEL: start = $8000, size = $7000, file = %O;
}
SEGMENTS {
ZEROPAGE: load = RAM, type = zp, define = yes;
ENTRY: load = KERNEL, type = ro, start = $8000;
DATA: load = KERNEL, type = rw, define = yes;
CODE: load = KERNEL, type = ro;
RODATA: load = KERNEL, type = ro;
}
FEATURES {
CONDES: segment = STARTUP,
type = constructor,
label = __CONSTRUCTOR_TABLE__,
count = __CONSTRUCTOR_COUNT__;
CONDES: segment = STARTUP,
type = destructor,
label = __DESTRUCTOR_TABLE__,
count = __DESTRUCTOR_COUNT__;
}
SYMBOLS {
# Define the stack size for the application
__STACKSIZE__: value = $0200, type = weak;
__STACKSTART__: type = weak, value = $0800; # 2k stack
}