sparkler icon indicating copy to clipboard operation
sparkler copied to clipboard

A virtual machine monitor and a tiny "operating system" to go with it. When you start Sparkler, it creates a virtual machine using Linux's KVM API. It is written in C and emulates a serial console and...

Results 1 sparkler issues
Sort by recently updated
recently updated
newest added

``` diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..16d9bd2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.o +monitor +sparkler diff --git a/main.c b/main.c index 1ef2a06..4da836c 100644 ---...