Search found 52 matches
- Sat Aug 15, 2026 10:40 am
- Forum: 32bit - MenuetOS
- Topic: Using 64bit audio code and syscalls from 32bit application
- Replies: 0
- Views: 1250
Using 64bit audio code and syscalls from 32bit application
Example for using 64bit audio functions from 32bit code. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; M32 Audio example ; ; Compile with FASM for Menuet ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; use32 org 0x0 db 'MENUET01' ; Header id dd 0x0...
- Mon Jul 27, 2026 11:25 am
- Forum: 64bit - Projects
- Topic: Fast UDP forwarding with SMP
- Replies: 2
- Views: 6384
Re: Fast UDP forwarding with SMP
; Start thread in CPU1 mov rax , 140 mov rbx , 3 mov rcx , threadentry mov rdx , threadstack mov r8 , 1 ; CPU1 int 0x60 ; .. threadentry: ; Open UDP socket - source mov rax , 53 mov rbx , 0 mov rcx , 10000 mov rdx , 11000 mov rsi , [source_ip] int 0x60 mov [socket1],rax ; Open UDP socket - destinat...
- Mon Jun 22, 2026 3:42 pm
- Forum: 64bit - Projects
- Topic: Fast UDP forwarding with SMP
- Replies: 2
- Views: 6384
Fast UDP forwarding with SMP
Menuet
cpu0: os + network driver
cpu1: UDP packet forwarding application
Linux Mint
[attachment=0]udp3.jpg[/attachment]
cpu0: os + network driver
cpu1: UDP packet forwarding application
Linux Mint
[attachment=0]udp3.jpg[/attachment]
- Sat May 09, 2026 5:59 pm
- Forum: 64bit - MenuetOS
- Topic: Secure connection test
- Replies: 1
- Views: 29081
Re: Secure connection test
SSL/TLS
- Sat May 09, 2026 5:54 pm
- Forum: 64bit - MenuetOS
- Topic: Secure connection test
- Replies: 1
- Views: 29081
Secure connection test
Secure connection test from 1.60.00 from HTTPC
- Fri Mar 27, 2026 12:36 pm
- Forum: 64bit - Hardware
- Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
- Replies: 5
- Views: 431885
Re: Intel P43 chipset, HD audio, RTL8169 - A user review
After googling, I noticed that Intel P43 ICH10 might have power management problems with RTL 8111C, so disabling different power saving types in BIOS might also enable the card.
- Thu Mar 26, 2026 9:39 am
- Forum: 64bit - Hardware
- Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
- Replies: 5
- Views: 431885
Re: Intel P43 chipset, HD audio, RTL8169 - A user review
Interesting. I have a RTL 8111C card (8168:10ec) and it is recognized with auto-configuration and IPs are also fetched.
Does automated driver search in Setup-app fetch the RTL8169 driver ?
Does DHCP client return any values ?
Does automated driver search in Setup-app fetch the RTL8169 driver ?
Does DHCP client return any values ?
- Fri Mar 20, 2026 8:49 pm
- Forum: 64bit - Hardware
- Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
- Replies: 5
- Views: 431885
Re: Intel P43 chipset, HD audio, RTL8169 - A user review
Have you tried booting with 2) Auto-configuration, without any configuration changes ? That should load the network driver, run the DHCP client and fetch the IP addresses. btw, both Qemu and VirtualBox fetch IP addresses fine, when M64 is booted with "auto-configuration". For VirtualBox you might ne...
- Fri Mar 20, 2026 8:48 pm
- Forum: 64bit - MenuetOS
- Topic: Running simple Linux X11 binaries.
- Replies: 4
- Views: 54620
Re: Running simple Linux X11 binaries.
Yes, the principle is the same. Running applications natively and converting its system calls to host OS.
- Mon Mar 16, 2026 6:11 pm
- Forum: 64bit - MenuetOS
- Topic: Running simple Linux X11 binaries.
- Replies: 4
- Views: 54620
Re: Running simple Linux X11 binaries.
The applications in the first post are running locally in Menuet, not in Linux. Menuet has a conversion layer which converts Linux system calls to Menuet system calls. The converter also loads needed libraries to memory and does the relocating. The applications are at the Menuet CD and Menu -> CD/HD...