kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

attr_asm_label_decl.c (111B)


      1 int test_main(void) {
      2   int x __asm("kit_local_x") = 40;
      3   int y __asm__("kit_local_y") = 2;
      4   return x + y;
      5 }