By doing this we don't need to call bios functions, we can just jsr directly to the addresses. This does mean that everytime the bios changes the bootloader has to change, but ideally all the bootloader does is load the bios and then get remapped out of memory. Any important drivers like file system can be loaded from the bootloader. This also means that the runtime functions are located in the bios for the bootloader, so the rom will have to stay mapped in until the kernel is started, at which point it will have its own runtime and the rom and bootloader are no longer needed.
20 lines
416 B
Bash
20 lines
416 B
Bash
#!/bin/bash
|
|
|
|
BOOTLOADER=../bios/bootloader.bin
|
|
DEVICE=/dev/mmcblk0
|
|
TMPBOOTSECT=/tmp/bootsect
|
|
TMPMOUNT=/tmp/sd
|
|
|
|
V=
|
|
STATUS="status=none"
|
|
|
|
echo "$(tput bold setaf 11)Creating Filesystem$(tput sgr 0)"
|
|
sudo mkfs.vfat -F32 $DEVICE -n SUPER6502 $V
|
|
echo
|
|
|
|
echo "$(tput bold setaf 11)Modifying Boot Sector$(tput sgr 0)"
|
|
sudo dd if=$BOOTLOADER of=$DEVICE bs=512 count=1 $STATUS
|
|
|
|
echo "$(tput bold setaf 10)Done!$(tput sgr 0)"
|
|
|