Search found 3 matches

by Hristic
Sat Aug 29, 2009 7:57 am
Forum: General Discussion
Topic: Converting Wetspot to C
Replies: 10
Views: 22391

does it make any differnence if you remove the first five lines?
i also can see no reason for setting variables afterwards.

i would try to remove the first 5 lines, because they do not affect the rest
of the program ( - may be a mistake of the programmer?) :roll:
by Hristic
Sun Apr 26, 2009 1:24 am
Forum: QBASIC and QB64 Questions & Answers
Topic: mouse in qbasic with asm...
Replies: 3
Views: 8723

Asm Code

1. Have you forgotten to set the h after the 33? (33h) - otherwise your program would exit because INT 21h and ax=0 starts an interrupt which ends your program. 2. Is your program called correctly? Have you either SHELL or CALL ABSOLUTE? 3. don't forget to set the lines PUSH BP - MOV BP, SP at the b...
by Hristic
Thu Jan 29, 2009 2:11 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: How can I make own software interrupts work
Replies: 5
Views: 12297

How can I make own software interrupts work

Can anyone tell me how to install an interrupt routine?
It should be executed 10000 times per second. I know
how to include asm into my source, but i want to
execute it in the background.

I hope somebody can help me with my problem.