Search found 31 matches

by villemt
Thu Apr 22, 2021 4:12 pm
Forum: 32bit - MenuetOS
Topic: Downloaded disk image but failed to boot on VirtualBox
Replies: 3
Views: 16648

Re: Downloaded disk image but failed to boot on VirtualBox

When you create the virtual machine in VirtualBox settings, you need to select a 64 bit OS. This will enable the needed 64bit commands for Menuet64. For example in the settings / general: Type: Microsoft Windows, Version: Windows 2003 (64bit).
by villemt
Wed Feb 24, 2021 1:12 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

Menuet does not have a usb 3.0 (xhci) support, just usb2 (ehci) and usb1 (ohci and uhci).
by villemt
Tue Feb 23, 2021 5:54 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

If motherboard has usb 3.0 (xhci) support, then it doesn't necessarily have usb 1.x controllers. All usb traffic can be handled with xhci.
by villemt
Thu Feb 18, 2021 4:16 pm
Forum: 64bit - MenuetOS
Topic: Unable to use keyboard on USB or PS/2
Replies: 2
Views: 11905

Re: Unable to use keyboard on USB or PS/2

Atleast the ps2 keyboard should work fine. Did you boot with both keyboards connected (which may affect legacy support) ? Or did you try one keyboard at a time?
by villemt
Sat Feb 13, 2021 8:34 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

For usb2.0/ehci, it seems that BIOS is stll using the controller, so did you enable usb_legacy_disable at configuration? Another option is to disable usb legacy support in BIOS, but you might need ps2 keyboard to enable it back on. For usb1.x, it can not find the controller, so does the system->pcis...
by villemt
Sun Feb 07, 2021 6:31 pm
Forum: Heap
Topic: Spam problem
Replies: 2
Views: 12248

Re: Spam problem

I've added picture recognition question and also email verification step. Lets see if those do the job. Or atleast reduce the spam.
by villemt
Sat Feb 06, 2021 12:55 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

Could you look at what exactly the menu->system->usb app displays ?
by villemt
Fri Feb 05, 2021 6:59 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

Did you enable usb (ehci ohci uhci) at configuration ? What does menu->system->usb app display about the states of usb 1.x and usb 2.0?
by villemt
Sat Jan 30, 2021 3:06 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

Yes, you can emulate the mouse with the windows-key + arrows combination. Also mouse clicks with winkey + space (first down, second up). By windows-key, I mean the key left from the left Alt-key.
by villemt
Thu Jan 28, 2021 5:15 pm
Forum: 64bit - MenuetOS
Topic: 1.36.30 released
Replies: 16
Views: 302667

Re: 1.36.30 released

You can use the new and faster system call by replacing "int 0x60" command with "syscall". So rax,10 / int 0x60 becomes rax,10 / syscall. However, also registers rcx and r11 needs to be replaced with rbp and r15, because rcx,r11 and r14 are always modified by "syscall". New system call is supported ...