Banana-Operating-System icon indicating copy to clipboard operation
Banana-Operating-System copied to clipboard

AVX support broken

Open alexdboxall opened this issue 4 years ago • 0 comments

Enabling AVX code causes a hang in VirtualBox.

Offending code: arch/i386/hal.c

if (avxDetect()) {
	coproSaveFunc = avxSave;
	coproLoadFunc = avxLoad;
	avxInit();
	return;
}

Not sure if issue caused by avxDetect(), avxInit() or calling coproSaveFunc/coproLoadFunc and having avxSave/avxLoad called.

alexdboxall avatar Sep 28 '21 12:09 alexdboxall