Advertisement
filashkov

Untitled

Nov 10th, 2021
1,260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. int
  2. umain() {
  3.     asm volatile(
  4.             ".global sys_yield\n\t"
  5.             ".bss\n\t"
  6.             ".comm a, 1\n\t"
  7.             ".comm sys_yield, 8\n\t"
  8.             //".comm cprintf, 8\n\t"
  9.  
  10.             ".text\n\t"
  11.             // ".set global_alias, cprintf"
  12.             :
  13.             :
  14.             :);
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement