RTOS_MSPM0  1.1
ECE445M starter code
Interpreter.h
Go to the documentation of this file.
1 
14 #if LAB6
15 #include <stdint.h>
16 
17 // IO redirection for interpreter
18 struct InterpreterIORedir {
19  uint32_t tid;
20  void (*InString)(char *, uint16_t);
21  void (*OutString)(char *);
22  void (*OutChar)(char);
23  void (*OutUDec)(uint32_t);
24  void (*OutSDec)(long);
25  void (*OutUHex)(uint32_t);
26  void (*Fix2)(long);
27 };
28 extern struct InterpreterIORedir *InterpreterIO;
29 #endif
30 
31 
38 void Interpreter(void);
39 
void Interpreter(void)
Interpreter.