1
0
mirror of https://github.com/taigrr/gopher-os synced 2025-01-18 04:43:13 -08:00

Define kernel entry-points in Go

This commit is contained in:
Achilleas Anagnostopoulos
2017-03-23 07:10:01 +00:00
parent 5b47048397
commit 865f46c467
2 changed files with 23 additions and 0 deletions

5
kernel/kmain.go Normal file
View File

@@ -0,0 +1,5 @@
package kernel
// Kmain is invoked by the boot.go and implements the actual kernel entrypoint.
func Kmain() {
}