Fixed log and added VGA text driver #1

Closed
vanten-s wants to merge 12 commits from dev into main
3 changed files with 1 additions and 7 deletions
Showing only changes of commit e108f8bd97 - Show all commits

View file

@ -4,7 +4,6 @@ all: build
build:
rm -rf build
rm -rf kernel/target
mkdir build
i686-elf-as -o build/boot.o boot.s
cd kernel; cargo build

View file

@ -4,6 +4,3 @@ target = "i686-unknown-bare.json"
[unstable]
build-std-features = ["compiler-builtins-mem"]
build-std = ["core", "compiler_builtins"]
[target."i686-unknown-bare"]
linker = "i686-elf-gcc"

View file

@ -1,8 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
let
crossPkgs = pkgs.pkgsCross.aarch64-multiplatform;
in pkgs.mkShell rec {
pkgs.mkShell rec {
buildInputs = with pkgs; [
clang
llvmPackages_17.bintools