Trying to run redox on windows 10 with qemu

Hello,
I’m trying to run redox on windows 10 with qemu with no success. I tried both the a version that I compiled myself and a downloaded image of redox_0.6.0.
Here is terminal with the qemu command and it’s output:

qemu-system-x86_64 -serial mon:stdio -d cpu_reset -d guest_errors -smp 4 -m 1024 -s -machine q35 -device ich9-intel-hda qemu-system-x86_64 -serial mon:stdio -d cpu_reset -d guest_errors -smp 4 -m 1024 -s -machine q35 -device ich9-intel-hda -device hda-duplex -net nic,model=e1000 -net user -device nec-usb-xhci,id=xhci -device usb-tablet,bus=xhci.0 -cpu max -drive file=harddrive.bin,format=raw
kernel::log:INFO -- Logger initialized.
kernel::arch::x86_64::start:INFO -- Redox OS starting...
kernel::arch::x86_64::start:INFO -- Kernel: 100000:B43188
kernel::arch::x86_64::start:INFO -- Stack: FFFF800000080000:FFFF80000009F000
kernel::arch::x86_64::start:INFO -- Env: FFFF80000009EFB0:FFFF80000009F000
kernel::arch::x86_64::start:INFO -- RSDPs: 0:0
kernel_end: B44000
bump_offset: AE3000
MemoryArea { base: PhysicalAddress(0), size: 9F000 }
MemoryArea { base: PhysicalAddress(100000), size: 3FEDE000 }
Memory: 1024 MB
Table: B44000
256: B45003

Nothing happens on the VGA window and if I try to run with no graphics it gets stuck at the same point.
I could run it on the docker container where I compiled it though.

What am I doing worng?

Thank you!