Initial Commit

This commit is contained in:
2026-06-22 15:26:03 +08:00
parent aad822b26c
commit 141baa59f6
3 changed files with 10 additions and 0 deletions
+1
View File
@@ -52,3 +52,4 @@ Module.symvers
Mkfile.old
dkms.conf
build/
+3
View File
@@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 4.0.0)
project(test)
add_executable(test main.c)
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}