The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: Earnie on July 28, 2010, 10:00:13 AM

Title: How do I read out certain fields of the Request Header
Post by: Earnie on July 28, 2010, 10:00:13 AM
This is my intialization routine. It works fine, but it outputs something I didn't expect.
The program has no specific purpose, it's just me playing to help my understanding.

initial  proc   near
         lea    dx,msgl         ;msgl was defined earlier
         mov    ah,9
         int    21h

         mov    dl,es:[bx]      ;"Length" field from Request Header
         mov    ah,2            ;write character to standard output
         int    21h

         mov    dl,es:[bx]+1    ;"Unit code" field from Request Header
         mov    ah,2            ;write character to standard output
         int    21h
       
         mov    dl,41h          ; "A"
         mov    ah,2            ;write character to standard output
         int    21h
         ret
initial  endp


The Output is:    1) the msgl message
                        2) an upward-pointing arrow
                        3) nothing
                        4) the character 'A'

I expected to get the length of the request header instead of this upward-pointing arrow.
Also the "unit code" was just a space character.

Is there maybe something wrong in the way I address the field? 
Title: Re: How do I read out certain fields of the Request Header
Post by: FORTRANS on July 28, 2010, 01:24:02 PM
Hi,

   The "upward-pointing arrow" is the character for the code
value 24 (18H).  That looks okay for the length.  The problem
(I guess) is that DOS function 2 is for character output and
not binary data per say.  Use a binary to numeric ASCII routine
to print the binary (byte) value as a human readable number.

   If the unit is zero nothing (blank) will be printed using function 2.

HTH,

Steve N.
Title: Re: How do I read out certain fields of the Request Header
Post by: dedndave on July 28, 2010, 03:13:53 PM
yah, Earnie
you need a little routine that converts binary values into hex or decimal ascii strings
may as well make it so it handles 16-bit values   :bg
hex is probably easiest

once you get that going, you can write some code to dump the entire request header
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on July 28, 2010, 04:57:58 PM
I'll try that and report the outcome.

:U
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on July 31, 2010, 03:47:43 PM
It works   :clap: I wrote a routine that does the conversion from decimal to ASCII

Thanks guys, I would not have found this mistake without you. At least not fast, cause I was totally on the wrong track.
Title: Re: How do I read out certain fields of the Request Header
Post by: dedndave on July 31, 2010, 04:06:39 PM
very good   :U
did you dump the entire header ?
show us the results   :bg
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on July 31, 2010, 05:54:56 PM

LENGTH: 024
UNIT CODE: 000
COMMAND NUMBER: 000
STATUS: 000


Pretty boring so far
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on July 31, 2010, 09:27:53 PM
I don't want to open up a new thread for this, so I'll ask here.

The thing is, I've been asking myself what it is that I want to achieve. I want to do low-level programming. That is the basic requirement for any project I'm going to start. But just playing around is so depressing, so I need a real project. And printing some characters in the console isn't going to do it for me. Can't get excited about that.

The ideas that came across my mind were these:

1) serial communication with another computer   
   problem: I only have 1 PC with the old COM port (my laptop has only USB, of course)
   although I could possibly use a rs232-usb converter for that

2) communication over NIC and ethernet cable
    problem: probably far, far beyond my current skills
 
Do you habe any suggestions for a suitable project ? I haven't found that much about device driver programming in this forum. Is it silly to try and build a device driver for DOS in this day and age?  Are there actually people in this forum who are still developing DOS device drivers?
I need some perspective on this so that I don't waste my time.

A further thought: Is it humanly possible to build for example a USB device driver or implement your write your own TCP/IP protocol stack without an insane amount of experience, say 20 years ?
Title: Re: How do I read out certain fields of the Request Header
Post by: MichaelW on August 01, 2010, 06:35:58 AM
For USB I think the biggest problem would be in understanding what you need to do, not in writing the code to do it. In any case, it's already been done, in (A86) assembler no less:

http://bretjohnson.us/

Title: Re: How do I read out certain fields of the Request Header
Post by: FORTRANS on August 01, 2010, 05:55:35 PM
Hi,

   If both your PC and laptop have parallel ports, you
could write a communications program using those.

   Another idea might be a language like Forth or Logo.

Regards,

Steve N.
Title: Re: How do I read out certain fields of the Request Header
Post by: redskull on August 01, 2010, 07:04:00 PM
If you want to do "real" low level stuff, the first thing you need is a computer running "real" DOS; NTVDM (windows 'dos boxes') just won't cut it.  They have bad habits of putting the kibash on anything out of the ordinary (TCP/IP, USB, block mode drivers), and you will end up having more hacks and kludges than good low level learning experiences.

-r
Title: Re: How do I read out certain fields of the Request Header
Post by: dedndave on August 02, 2010, 01:20:12 AM
Steve's suggestion about the parallel port is probably the easiest route
the DOS LPTn: drivers really aren't written to handle bi-directional communications (they are written for printers)
but the port hardware will handle it rather well
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on August 02, 2010, 05:54:12 PM
Nope, no parallel port on my laptob. Just USB.
Title: Re: How do I read out certain fields of the Request Header
Post by: dedndave on August 02, 2010, 06:57:32 PM
need to google "USB 2.0 specification"
the DOS USB drivers in the link above are probably too out of date (hardware wise) to be of much use
then, you need to decide what you want to do
you could write a block device driver to access the drive on one machine from the other via USB
or, to send text strings back and forth, a character device driver
the nature of the 2 device types is quite different
Title: Re: How do I read out certain fields of the Request Header
Post by: MichaelW on August 02, 2010, 10:01:20 PM
Dave,

The DOS USB drivers at the link above are still under development, and I know of an industrial application where they are (or at least were) working with some recent SBCs running DOS/DPMI.
Title: Re: How do I read out certain fields of the Request Header
Post by: dedndave on August 03, 2010, 04:18:32 AM
oh - my mistake
i read the doc's that are included - he stated they may only work with older hardware
it may be that the documentation is farther behind than the code - a common occurance
Title: Re: How do I read out certain fields of the Request Header
Post by: FORTRANS on August 03, 2010, 08:11:47 PM
Hi,

   Well there is always graphics programming for the video
card.  Mode 12H and 13H are standard VGA modes that
can be programmed directly.  VESA modes supply more
colors and higher resolution.  And you can start out using
BIOS functions for an easy start.  State machines and
fractals look good.

Regards,

Steve N.
Title: Re: How do I read out certain fields of the Request Header
Post by: Earnie on August 04, 2010, 05:07:30 PM
Quote from: FORTRANS on August 03, 2010, 08:11:47 PM
State machines and fractals look good.

Can you explain that further? I really don't know what that means.
Title: Re: How do I read out certain fields of the Request Header
Post by: FORTRANS on August 04, 2010, 09:26:31 PM
Hi,

   Well fractals like the Mandelbrot and Julia sets make
pretty pictures and are easy (give or take) to program.
Look for a DOS program called FRACTINT for an example.

   State machines use rules to change the screen from
one generation to the next.  the best known is Conway's
"Game of Life".  I have played with a simpler state machine
"just to see what happens".  It makes pretty, changing
patterns.  It was designed for 8088/80186 machines and
runs too fast on anything remotely current.  I could slow
it down if you need an example other than Life.

Regards,

Steve
Title: Re: How do I read out certain fields of the Request Header
Post by: FORTRANS on August 06, 2010, 09:01:04 PM
Hi,

   Here are two versions of a state machine program.
A guy programmed his Tandy color computer and I
then programmed it for my 8088 Zenith.  I updated
it to CGA graphics for my palmtop computer.  One
program here is an old one for VGA mode 11H.  I
tidied up the current CGA mode 6 version as well and
added a delay for current computers.

   There are 16 starting patterns you select by a letter
on the command line.  Full screen of course.

Cheers,

Steve N.