C言語なら俺に聞け(入門篇) Part 17
at TECH
209:207
07/07/29 17:32:15
>>208
すみません情報が足りませんでした。
元のソースは以下になります。(nasm091)
static void bin_init (FILE *afp, efunc errfunc, ldfunc ldef)
{
fp = afp;
error = errfunc;
(void) ldef; /* placate optimisers */
start_point = 0; /* default */
textsect.contents = saa_init(1L);
datasect.contents = saa_init(1L);
textsect.length = datasect.length = 0;
textsect.index = seg_alloc();
datasect.index = seg_alloc();
bsslen = 0;
bssindex = seg_alloc();
relocs = NULL;
reloctail = &relocs;
}
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
5498日前に更新/116 KB
担当:undef