vlang / vinix

Vinix is an effort to write a modern, fast, and useful operating system in the V programming language
https://vlang.io
GNU General Public License v2.0
1.89k stars 120 forks source link

terminal running qemu is spammed on newest commit #60

Closed Ccode-lang closed 2 years ago

Ccode-lang commented 2 years ago

sample output:

GDT=     ffffffff802ef580 00000067
IDT=     ffffffff802ee560 00000fff
CR0=80000013 CR2=00000800006fd000 CR3=0000000026771000 CR4=00000620
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000 
DR6=00000000ffff0ff0 DR7=0000000000000400
CCS=0000000000000080 CCD=ffff800002f0eec8 CCO=EFLAGS  
EFER=0000000000000d00
 10388: v=21 e=0000 i=0 cpl=0 IP=0028:ffffffff8020830f pc=ffffffff8020830f SP=0030:ffff800002f0eef8 env->regs[R_EAX]=ffff8000fee00380
RAX=ffff8000fee00380 RBX=ffff800002f09000 RCX=000000000000001b RDX=ffff800000000000
RSI=0000000000088b80 RDI=0000000000000001 RBP=ffff800002f0ef38 RSP=ffff800002f0eef8
R8 =00000000ffffffff R9 =0000000000000000 R10=0000000000000001 R11=0000000000000000
R12=0000000000000000 R13=00000000ffffffff R14=0000000000000000 R15=0000000000000000
RIP=ffffffff8020830f RFL=00000282 [--S----] CPL=0 II=0 A20=1 SMM=0 HLT=0
ES =0030 0000000000000000 00000000 00009300 DPL=0 DS   [-WA]
CS =0028 0000000000000000 00000000 00209a00 DPL=0 CS64 [-R-]
SS =0030 0000000000000000 00000000 00009300 DPL=0 DS   [-WA]
DS =0030 0000000000000000 00000000 00009300 DPL=0 DS   [-WA]
FS =0053 000008000037c1a8 00000000 0000f300 DPL=3 DS   [-WA]
GS =0053 0000000000000000 00000000 0000f300 DPL=3 DS   [-WA]
LDT=0000 0000000000000000 00000000 00008200 DPL=0 LDT
TR =0058 ffff800002f09010 00000067 00008900 DPL=0 TSS64-avl

It spams this over and over.

AtieP commented 2 years ago

Disable interrupt logging by removing -d int from the QEMU flags.

Ccode-lang commented 2 years ago

I am I think... let me check.

mintsuki commented 2 years ago

Remove -d int (https://github.com/vlang/vinix/blob/main/Makefile#L23) or run with make run-kvm if you have KVM.

Ccode-lang commented 2 years ago

oh ok 👍