1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 18:10:24 +00:00
qb64/internal/help/INTERRUPTX.txt

49 lines
1.5 KiB
Plaintext
Raw Normal View History

The '''INTERRUPTX''' statement is an assembly routine for accessing computer information registers.
{{PageSyntax}}
2016-03-18 11:36:04 +00:00
:: '''[[CALL]] INTERRUPTX('''intnum, inregs, outregs''')'''
*Available on QuickBasic versions 4 up, it requires the library to be loaded. Command line: QB.EXE /L in QB4.5 .
* Interrupt number is the interrupt reference vector table address. See: [http://www.ctyme.com/intr/cat.htm Ralf Brown's Interrupt List]
* Inregs are the values placed into the call and outregs are the register return values.
* INTERRUPTX can use all of the TYPE values when they are required.
2016-03-18 11:36:04 +00:00
* '''NOTE: QB64 does not currently support INT 33h mouse functions above 3 or INT requests other than 33'''
* The [[TYPE]] definition below will work for both [[INTERRUPT]] and INTERRUPTX statement calls:
''RegType.BI''  '$INCLUDE file can be used by INTERRUPT or INTERRUPTX
{{TextStart}} '' ''
{{Cb|TYPE}} RegTypeX
ax AS INTEGER
bx AS INTEGER
cx AS INTEGER
dx AS INTEGER
bp AS INTEGER
si AS INTEGER
di AS INTEGER
flags AS INTEGER
ds AS INTEGER
es AS INTEGER
{{Cb|END TYPE}}
{{TextEnd}}
{{CodeStart}} '' ''
{{Cl|REM}} {{Cl|$INCLUDE}}: 'RegType.BI' 'Use only with the RegType or {{Cl|QB.BI}} files
{{Cl|DIM}} {{Cl|SHARED}} inregs {{Cl|AS}} RegTypeX, outregs AS RegTypeX
{{CodeEnd}}
''See also:''
* [[$INCLUDE|$INCLUDE:]]
* [[QB.BI]], [[CALL ABSOLUTE]]
* [[INTERRUPT]]
''Download Ethan Winer's FREE Qbasic Book and Programs:'' [http://www.ethanwiner.com/fullmoon.html WINER.ZIP]
{{PageNavigation}}