mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 03:13:15 +01:00
Finished adding untested shm syscalls. Finished adding untested l4 send/recv helpers Everything compiles. Now going to fix lots of bugs ;-)
12 lines
142 B
C
12 lines
142 B
C
|
|
|
|
#include <blkdev.h>
|
|
#include <ramdisk.h>
|
|
|
|
|
|
void init_blkdev(void)
|
|
{
|
|
ramdisk[0].ops.init(&ramdisk[0]);
|
|
ramdisk[1].ops.init(&ramdisk[1]);
|
|
}
|