| 22 | TSS tss; |
| 23 | |
| 24 | int syscall_0(int first, int second, int third, int forth, int fifth) |
| 25 | { |
| 26 | printf("systerm call 0: %d, %d, %d, %d, %d\n", |
| 27 | first, second, third, forth, fifth); |
| 28 | return first + second + third + forth + fifth; |
| 29 | } |
| 30 | |
| 31 | void first_process() |
| 32 | { |