root/include/load.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef YACASL2_LOAD_H_INCLUDED
   2 #define YACASL2_LOAD_H_INCLUDED
   3 #include "word.h"
   4 #include "struct.h"
   5 #include "cerr.h"
   6 
   7 /**
   8  * @brief アセンブル結果読み込みエラーをエラーリストに追加する
   9  */
  10 void addcerrlist_load();
  11 
  12 /**
  13  * @brief 指定されたファイルからアセンブル結果を読み込む
  14  *
  15  * @return 読み込み終了アドレス。読み込めなかった場合は、0
  16  *
  17  * @param file 読み込むファイル名
  18  * @param start 読み込み開始アドレス
  19  */
  20 WORD loadassemble(const char *file, WORD start);
  21 
  22 #endif

/* [<][>][^][v][top][bottom][index][help] */