2 Commits

Author SHA1 Message Date
xamidev
1354a49ddb remove testing 2024-10-07 19:31:25 +02:00
xamidev
1412bd87ad Add img 2024-10-07 17:45:21 +02:00
4 changed files with 1 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
![BlankOSshowcase](blankos.png) ![BlankOSshowcase](https://github.com/user-attachments/assets/63aae4ae-1633-4981-875d-8e2627ccc25c)
> [!WARNING] > [!WARNING]
> This is free and unencumbered software released into the public domain. Many things might be (are) broken. > This is free and unencumbered software released into the public domain. Many things might be (are) broken.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 KiB

BIN
src/initrd/lambda.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 732 KiB

View File

@@ -113,14 +113,6 @@ void kmain(multiboot2_info *mb_info)
__asm__ __volatile__("sti"); __asm__ __volatile__("sti");
init_alloc(); init_alloc();
void* ptr1 = malloc(256);
void* ptr2 = malloc(512);
printf("[debug] malloc test ptr1=0x%x, ptr2=0x%x\n", (unsigned int)ptr1, (unsigned int)ptr2);
free(ptr1); free(ptr2);
void* ptr3 = calloc(1024, 2);
printf("[debug] calloc test ptr3=0x%x\n", (unsigned int)ptr3);
free (ptr3);
// usually the place where i do testing // usually the place where i do testing