fpu init
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1029
This commit is contained in:
parent
3a059c870b
commit
3afdb23daf
1 changed files with 6 additions and 5 deletions
|
@ -55,7 +55,9 @@ void DOS_Init(Section*);
|
|||
|
||||
|
||||
void CPU_Init(Section*);
|
||||
//void FPU_Init();
|
||||
#if C_FPU
|
||||
void FPU_Init(Section*);
|
||||
#endif
|
||||
void DMA_Init(Section*);
|
||||
void MIXER_Init(Section*);
|
||||
void MIDI_Init(Section*);
|
||||
|
@ -185,7 +187,9 @@ void DOSBOX_Init(void) {
|
|||
|
||||
secprop=control->AddSection_prop("cpu",&CPU_Init);
|
||||
secprop->Add_int("cycles",1800);
|
||||
|
||||
#if C_FPU
|
||||
secprop->AddInitFunction(&FPU_Init);
|
||||
#endif
|
||||
secprop->AddInitFunction(&DMA_Init);
|
||||
secprop->AddInitFunction(&VGA_Init);
|
||||
secprop->AddInitFunction(&KEYBOARD_Init);
|
||||
|
@ -252,9 +256,6 @@ void DOSBOX_Init(void) {
|
|||
|
||||
control->SetStartUp(&SHELL_Init);
|
||||
|
||||
#if C_FPU
|
||||
FPU_Init();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue