Search found 52 matches

by villemt
Sat Aug 15, 2026 10:40 am
Forum: 32bit - MenuetOS
Topic: Using 64bit audio code and syscalls from 32bit application
Replies: 0
Views: 1249

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...
by villemt
Mon Jul 27, 2026 11:25 am
Forum: 64bit - Projects
Topic: Fast UDP forwarding with SMP
Replies: 2
Views: 6375

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...
by villemt
Mon Jun 22, 2026 3:42 pm
Forum: 64bit - Projects
Topic: Fast UDP forwarding with SMP
Replies: 2
Views: 6375

Fast UDP forwarding with SMP

Menuet
cpu0: os + network driver
cpu1: UDP packet forwarding application

Linux Mint

[attachment=0]udp3.jpg[/attachment]
by villemt
Sat May 09, 2026 5:59 pm
Forum: 64bit - MenuetOS
Topic: Secure connection test
Replies: 1
Views: 29080

Re: Secure connection test

SSL/TLS
by villemt
Sat May 09, 2026 5:54 pm
Forum: 64bit - MenuetOS
Topic: Secure connection test
Replies: 1
Views: 29080

Secure connection test

Secure connection test from 1.60.00 from HTTPC
by villemt
Fri Mar 27, 2026 12:36 pm
Forum: 64bit - Hardware
Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
Replies: 5
Views: 431882

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.
by villemt
Thu Mar 26, 2026 9:39 am
Forum: 64bit - Hardware
Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
Replies: 5
Views: 431882

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 ?
by villemt
Fri Mar 20, 2026 8:49 pm
Forum: 64bit - Hardware
Topic: Intel P43 chipset, HD audio, RTL8169 - A user review
Replies: 5
Views: 431882

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...
by villemt
Fri Mar 20, 2026 8:48 pm
Forum: 64bit - MenuetOS
Topic: Running simple Linux X11 binaries.
Replies: 4
Views: 54618

Re: Running simple Linux X11 binaries.

Yes, the principle is the same. Running applications natively and converting its system calls to host OS.
by villemt
Mon Mar 16, 2026 6:11 pm
Forum: 64bit - MenuetOS
Topic: Running simple Linux X11 binaries.
Replies: 4
Views: 54618

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...