dev: removing old printChar and instead using OS print vector

This commit is contained in:
A.M. Rowsell 2025-12-20 18:36:58 -05:00
commit cb332b7b05
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
6 changed files with 43 additions and 51 deletions

View file

@ -1,9 +1,9 @@
# SPDX-License-Identifier: MPL-2.0
/* SPDX-License-Identifier: MPL-2.0 */
/* SPDX-FileCopyrightText: (c) 2025 A.M. Rowsell */
SECTIONS
{
.zone 0xA000 : { *(.zone) *(zone) }
.text 0xE000 : { *(.text) }
.float 0xE000 : { *(.float) *(float) }
.text 0xE000 : { *(.text) *(.float) *(float) }
.vectors 0xF000 : { *(.vectors) }
.data 0x7000 : { *(.data) }
.bss : { *(.bss) }