Start on the rasteriser implementation

This commit is contained in:
2024-06-22 17:16:07 +01:00
parent 8fc3a2577a
commit fc79cb1906
3 changed files with 23 additions and 3 deletions

7
src/rasteriser/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("RASTERISER\n");
return EXIT_SUCCESS;
}