Search found 11 matches
- Sat Dec 12, 2009 4:47 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Is it possible?Linking with just link.exe without QB4.5?
- Replies: 3
- Views: 8013
- Sat Dec 12, 2009 4:15 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: mouse in qbasic with asm...
- Replies: 3
- Views: 8461
- Sat Dec 12, 2009 3:04 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Is it possible?Linking with just link.exe without QB4.5?
- Replies: 3
- Views: 8013
Is it possible?Linking with just link.exe without QB4.5?
Hi there. Can we make an exe file from a bas file just using the linker not the Qb4.5 itself ? For example like that; LINK.EXE "SCODE.BAS", "SCODE.EXE", "SCODE.LIB" The problem is to create the obj file from the bas file. If I could create the obj file from the bas file...
- Sat Jun 27, 2009 10:05 am
- Forum: General Discussion
- Topic: XMS
- Replies: 1
- Views: 6961
XMS
Hi! I was creating a library for QB4.5. But when I tried to add XMS commands to library, I detected that, writing single byte to that memory doesn't work with xms copy function. I found a way but, now I need to know if there is a direct way to write/read single byte to/from xms memory ? If you answe...
- Wed Mar 04, 2009 7:46 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: How can I make own software interrupts work
- Replies: 5
- Views: 11263
if you want to run your code in background using an interrupt; First you've to find an interrupt that you can replace your code. Then you should set the run time. For example we insert our code into INTERRUPT 9 and every keyboard action invokes our code. While finishing our program we restore the or...
- Wed Mar 04, 2009 5:02 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: screen shots?
- Replies: 6
- Views: 10216
if you check the INTERRUPTS you can see the 'PRINT SCREEN' interrupt. You can easily write a code and replace it with the original print screen interrupt and by the way you can get all dos? ss with Print screen key. Your new interrupt code should know the screen dimensions (ver, hor, depth) and you'...
- Sun Jun 01, 2008 12:16 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Help... screen 13 virtual memory and a few library questions
- Replies: 6
- Views: 14977
- Sun Jun 01, 2008 11:53 am
- Forum: QBASIC and QB64 Questions & Answers
- Topic: 256 colours
- Replies: 12
- Views: 23650
DECLARE FUNCTION Get.Red$ (Col%) DECLARE FUNCTION Get.GRe$ (Col%) DECLARE FUNCTION Get.Blu$ (Col%) 'Getting absolute 5 bit value of color component 'Declare Function Get.Red$(col%) 'Declare Function Get.Gre$(col%) 'Declare Function Get.Blu$(col%) SCREEN 13 FOR x = 0 TO 15 FOR y = 0 TO 15 LINE (80 +...
- Sat May 24, 2008 11:12 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Extended display identification data (EDID)
- Replies: 0
- Views: 8291
Extended display identification data (EDID)
hi there. Can any one help me on setting the correct crt table for every individual resolution for every individual type of monitor ? I know every port and low memeory addresses needed to do that but I actually never set the correct crtc table :S. I assume you've already known how to install a svga ...
- Sat May 24, 2008 11:05 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: MEMORY OVERFLOW ERROR !!! (Don't need help anymore)
- Replies: 16
- Views: 28121
- Sat May 24, 2008 11:02 pm
- Forum: QBASIC and QB64 Questions & Answers
- Topic: Call Absolute (warning! hardcore inside!)
- Replies: 1
- Views: 5394
Call Absolute (warning! hardcore inside!)
Hi, can we write/create the command 'Call Absolute' In asm ? What is the Logic ? The bare hex codes are stored in some where and then, the CS:IP is pointed there with the 'call absolute' command ? Call absolute [parameter list], [offset of hex code string] Proc MyAbsolute Put the Parameters Into Sta...