summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/syscall.h
blob: 29941c95e286336bb52cb5285206dd8a7a5c736d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __SYS_CALL_H__
#define __SYS_CALL_H__

/*
*   Enable / disable virtual address traslation
*/

extern void v_addr(uint8_t flag);

/*
*   Programs execution
*/

extern void prog_exec_0(void);
extern void prog_exec_1(void);

extern void prog_stop_0(void);
extern void prog_stop_1(void);

#endif