OSDN Git Service

removed .gitxxx files from index
[heavyosecpu/HeavyOSECPU.git] / function.h
1 #ifndef _HDLOAD_FUNCTION
2 #define _HDLOAD_FUNCTION 1
3
4 /* プログラムのすべての部分で汎用的に利用できる関数を定義する。 */
5
6
7 void dbgrMain(struct Regs *r);
8 const unsigned char *searchArg(int argc, const unsigned char **argv, const unsigned char *tag, int i); // コマンドライン引数処理.
9 void randStatInit(unsigned int seed);
10 void randStatNext();
11 void devFunc(struct Regs *r); // junkApiを処理する関数
12
13
14
15
16 #endif