cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

hello.c (229B)


      1/*
      2 * Hello World, system test version
      3 *
      4 * We don't have the benefit of libc, just builtin C primitives and
      5 * whatever is in minilib.
      6 */
      7
      8#include <minilib.h>
      9
     10int main(void)
     11{
     12    ml_printf("Hello World\n");
     13    return 0;
     14}