dthain / basekernel

A simple OS kernel for research, teaching, and fun.
GNU General Public License v2.0
804 stars 109 forks source link

Mouse driver not working #261

Closed yeppiidev closed 3 years ago

yeppiidev commented 4 years ago

I'm working on an  OS called (Cadex OS)[http://github.com/opencreeck/Cadex-OS-Official]. I'm now planning to utilize the code in mouse.c for the XEND (A small X Window System). I added a syscall for getting the mouse state and it works fine. But the problem is, the X, Y, and Button values do not change when I move and click the mouse. Please fix this issue. Thank you.

dthain commented 4 years ago

As you can see, the mouse driver is not extensively used by the system (yet). You are welcome to contribute a patch to fix it.

yeppiidev commented 4 years ago

But I don't know how to. I tried out SANiK's mouse driver but it didn't work. Cadex OS started from basekernel but it is now far more advanced than it. But I'll try to patch it.