Fixed disk reading

This commit is contained in:
Jozef Nagy 2025-01-29 20:33:45 +01:00
parent fae958815f
commit 36ae3ec0b7
Signed by untrusted user who does not match committer: crz
GPG key ID: 459A4811CEAC7068
6 changed files with 20 additions and 13 deletions

View file

@ -31,7 +31,9 @@ void axboot_init()
// read kernel -> test read
char *buffer = NULL;
vfs_read("\\System\\axkrnl", buffer);
vfs_read("\\System\\axkrnl", &buffer);
// TODO: Do something with the kernel :p
mem_free(buffer);