YACASL2
Functions | Variables
monitor.c File Reference
#include "monitor.h"
Include dependency graph for monitor.c:

Go to the source code of this file.

Functions

unsigned adrhash (WORD adr)
 アドレスのハッシュ値を返す More...
 
bool getbps (WORD adr)
 ブレークポイント表にアドレスがある場合はtrue、ない場合はfalseを返す More...
 
bool addbps (WORD adr)
 ブレークポイント表にアドレスを追加する More...
 
bool delbps (WORD adr)
 ブレークポイント表からアドレスを削除する More...
 
void listbps ()
 
void freebpslist (BPSLIST *head)
 
void freebps ()
 ブレークポイント表を解放する More...
 
MONARGSmonargstok (const char *str)
 文字列から、モニターの引数を取得する More...
 
MONCMDLINEmonlinetok (const char *line)
 行から、モニターの命令と引数を取得する More...
 
bool stracmp (char *str1, int str2c, char *str2v[])
 
void warn_ignore_arg (int argc, char *argv[])
 
void mon_break (int argc, char *argv[])
 
void mon_dump (int argc, char *argv[])
 
MONCMDTYPE monitorcmd (char *cmd, MONARGS *args)
 モニターの命令を実行する More...
 
void free_moncmdline (MONCMDLINE *moncmdl)
 
int monquit ()
 
void monitor ()
 COMET IIモニターを起動する More...
 

Variables

static BPSLISTbps [BPSTABSIZE]
 ブレークポイント表 More...
 
static char * monitor_prompt = "(comet2 monitor)"
 comet2monitorのプロンプト More...
 

Function Documentation

◆ addbps()

bool addbps ( WORD  adr)

ブレークポイント表にアドレスを追加する

Returns
追加した場合はtrue、追加しなかった場合はfalse
Parameters
*adrアドレス

Definition at line 37 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ adrhash()

unsigned adrhash ( WORD  adr)

アドレスのハッシュ値を返す

Returns
ハッシュ値
Parameters
adrアドレス

Definition at line 13 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ delbps()

bool delbps ( WORD  adr)

ブレークポイント表からアドレスを削除する

Returns
削除した場合はtrue、削除しなかった場合はfalse
Parameters
*adrアドレス

Definition at line 57 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ free_moncmdline()

void free_moncmdline ( MONCMDLINE moncmdl)

Definition at line 357 of file monitor.c.

Here is the caller graph for this function:

◆ freebps()

void freebps ( )

ブレークポイント表を解放する

Returns
なし

Definition at line 116 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ freebpslist()

void freebpslist ( BPSLIST head)

Definition at line 106 of file monitor.c.

Here is the caller graph for this function:

◆ getbps()

bool getbps ( WORD  adr)

ブレークポイント表にアドレスがある場合はtrue、ない場合はfalseを返す

Returns
trueまたはfalse
Parameters
*adrアドレス

Definition at line 25 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ listbps()

void listbps ( )

Definition at line 89 of file monitor.c.

Here is the caller graph for this function:

◆ mon_break()

void mon_break ( int  argc,
char *  argv[] 
)

Definition at line 208 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ mon_dump()

void mon_dump ( int  argc,
char *  argv[] 
)

Definition at line 255 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monargstok()

MONARGS* monargstok ( const char *  str)

文字列から、モニターの引数を取得する

Returns
モニターの引数
Parameters
*str文字列

Definition at line 124 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monitor()

void monitor ( )

COMET IIモニターを起動する

Returns
なし

Definition at line 389 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monitorcmd()

MONCMDTYPE monitorcmd ( char *  cmd,
MONARGS args 
)

モニターの命令を実行する

Returns
モニター命令の種類
Parameters
*cmdモニター命令
*argsモニター命令の引数

Definition at line 287 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monlinetok()

MONCMDLINE* monlinetok ( const char *  line)

行から、モニターの命令と引数を取得する

Returns
モニターの命令と引数
Parameters
*line

Definition at line 146 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monquit()

int monquit ( )

Definition at line 375 of file monitor.c.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ stracmp()

bool stracmp ( char *  str1,
int  str2c,
char *  str2v[] 
)

Definition at line 182 of file monitor.c.

Here is the caller graph for this function:

◆ warn_ignore_arg()

void warn_ignore_arg ( int  argc,
char *  argv[] 
)

Definition at line 196 of file monitor.c.

Here is the caller graph for this function:

Variable Documentation

◆ bps

BPSLIST* bps[BPSTABSIZE]
static

ブレークポイント表

Definition at line 6 of file monitor.c.

◆ monitor_prompt

char* monitor_prompt = "(comet2 monitor)"
static

comet2monitorのプロンプト

Definition at line 11 of file monitor.c.