Added a way to manually test the Malloc function from the shell's command line.

This commit is contained in:
2019-08-31 17:50:14 -05:00
parent a587fd6fe2
commit 658a380f9a
8 changed files with 176 additions and 51 deletions
+4 -1
View File
@@ -40,7 +40,10 @@ kernel.iso: kernel.bin
mkdir iso/boot
mkdir iso/boot/grub
cp obj/bin/kernel.bin iso/boot/kernel.bin
echo 'menuentry SDOS {' > iso/boot/grub/grub.cfg
echo 'set timeout=0' > iso/boot/grub/grub.cfg
echo 'set default=0' >> iso/boot/grub/grub.cfg
echo '' >> iso/boot/grub/grub.cfg
echo 'menuentry "SDOS" {' >> iso/boot/grub/grub.cfg
echo ' multiboot /boot/kernel.bin' >> iso/boot/grub/grub.cfg
echo ' boot' >> iso/boot/grub/grub.cfg
echo '}' >> iso/boot/grub/grub.cfg