Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
943 views
in Technique[技术] by (71.8m points)

basic - How to get comm port addresses from BIOS in QB45

I have been using the following code to get comm port addresses from BIOS in QB45:

PRINT "Hex addresses for ports 0 to 3 from BIOS."
DEF SEG = 0
FOR x = 0 TO 3
    z = &H400 + x * 2
    p = PEEK(z)
    q = PEEK(z + 1)
    a = q * &H100 + p
    PRINT " COM" + STR$(x); ": " + HEX$(a)
NEXT
DEF SEG

However when I increase FOR x = 0 to 3 into FOR x = 0 to 7 it returns x378 for 4 (which is lpt1) and 5, 6, and 7, return 0 and I need a way to read comm ports 4, 5, 6, and 7.

I know controlpanel->devicemanager->ports can read them from resources, but I want my basic QB45 program to read them. Any help? Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...