1. Can I have my resolution and colors in interrupt 10h ?
2. What is the equivalent of pascal "putpixel" in assembler ?
Sorry for my English
Interrupt 10h
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Interrupt 10h
I'm seeing you're having a bigger problem with controlling the magic powers of google.
Looking up the details of int 10h provided the following:
http://www.ctyme.com/intr/rb-0069.htm
http://www.ctyme.com/intr/rb-0104.htm
The wiki has many more examples of how drawing pixels is actually done - you should read that too.
Looking up the details of int 10h provided the following:
http://www.ctyme.com/intr/rb-0069.htm
http://www.ctyme.com/intr/rb-0104.htm
The wiki has many more examples of how drawing pixels is actually done - you should read that too.
Re: Interrupt 10h
yeah this information is so easy to find. in any case, would suggest you don't use int 10h to actually draw pixels. it's slow. use int 10h to change your video mode, and then write directly to video memory.