The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: bcddd214 on December 22, 2011, 08:01:26 AM

Title: making it writable
Post by: bcddd214 on December 22, 2011, 08:01:26 AM
I put together my first OS and now toying with making it legit. I hit my first bug making it write able. The keyboard is gonna have to work some way.
I need to pull in the ASCII keys somehow.
If someone could flash some code up to me so that I could see how this is done, I would be eternally grateful.
Title: Re: making it writable
Post by: bcddd214 on December 22, 2011, 08:03:43 AM
Overview.

I created a blank screen, the blue screen has to be able to do something.
Title: Re: making it writable
Post by: bomz on December 22, 2011, 09:07:26 AM
http://www.emu8086.com/
(http://s2.ipicture.ru/uploads/20111222/g41HV239.gif)
Title: Re: making it writable
Post by: FORTRANS on December 22, 2011, 01:39:09 PM
Hi,

   If you are in real mode and can use the BIOS, here is some
information.  Functions 10H and 11H are similar to functions 0 and
1, but they support the 101 key keboard gray keys differently.

HTH,

Steve

"INT 16,00","Read Keyboard Input

   INT 16H is the keyboard services interrupt.  Function 0 is
the return a character from the keyboard.  If a character is
not in the input buffer, it will wait for one.  If the character
returned in AL is zero, then the key is a non-ASCII function
key.  If there is no key on entry, the 200LX will use the light
sleep function while waiting.

INPUT  AH = 0

OUTPUT AH = Scancode
       AL = Character or 0",""@

"INT 16,01","Check Keyboard Status

   Checks the input buffer to see if there is a key waiting.
If a key is available, the codes are returned in AX, but not
removed from the buffer.  If no key availble, the Zero Flag is
set.

INPUT  AH = 1

OUTPUT Zero Flag = 1, Buffer is empty
       Zero Flag = 0, AH = Scancode, AL = Character or 0",""@
Title: Re: making it writable
Post by: bcddd214 on December 23, 2011, 12:34:11 AM
Quote from: bomz on December 22, 2011, 09:07:26 AM
http://www.emu8086.com/
(http://s2.ipicture.ru/uploads/20111222/g41HV239.gif)


Wow, thank you. That is a little more than what I needed. I am afraid I do not have a: drive or even own one. I would like to produce pretty much the same effect without the kernel first.
Than I will play around with changing that to work on a cd-rom.
I think that if I can grasp making it more of a text editor first, my goal of being able to write it on my own is a little bit more achievable but this is a beautiful program.
Title: Re: making it writable
Post by: bcddd214 on December 23, 2011, 12:47:45 AM
Quote from: FORTRANS on December 22, 2011, 01:39:09 PM
Hi,

   If you are in real mode and can use the BIOS, here is some
information.  Functions 10H and 11H are similar to functions 0 and
1, but they support the 101 key keboard gray keys differently.

HTH,

Steve

"INT 16,00","Read Keyboard Input



do I place this in a proc or a macro?
How should I call on it?
Title: Re: making it writable
Post by: bomz on December 23, 2011, 12:53:58 AM
http://www.bioscentral.com/misc/interrupts.htm
http://www.ctyme.com/intr/cat-003.htm
GOOGLE
Title: Re: making it writable
Post by: bcddd214 on December 23, 2011, 12:54:41 AM
I guess what is confusing me is that I was expecting to have to teach the program what ascii was.
INPUT  AH = 1

OUTPUT Zero Flag = 1, Buffer is empty
      Zero Flag = 0, AH = Scancode, AL = Character or 0",""@

makes sense, I am just expecting more to this.
Title: Re: making it writable
Post by: bomz on December 23, 2011, 01:09:10 AM
My English is poor. I am not well understand what you want. Try emmulator - it show all very good
Title: Re: making it writable
Post by: FORTRANS on December 23, 2011, 12:45:54 PM
Quote from: bcddd214 on December 23, 2011, 12:47:45 AM

"INT 16,00","Read Keyboard Input


do I place this in a proc or a macro?
How should I call on it?

   Hi,

   Something like the following.

Steve N.


; You want to poll the keyboard.
        MOV     AH,0
        INT     16H
        CMP     AL,0    ; Test for function keys.
        JE      FunctionKey
        ; AL has a code of a normal key (ASCII).
        ; Your code for processing an ASCII character.

FunctionKey:
        ; AH has the scan code of a function key.
        ; Your code for processing a function key like the cursor keys.
Title: Re: making it writable
Post by: MichaelW on December 23, 2011, 04:05:57 PM
bcddd214,

Interrupt 16h function 0 and 10h are used to read keystrokes from the keyboard buffer. If a keystroke is available in the buffer then the functions remove it from the buffer and return the key scan code in AH and the character code translation in AL. If no keystroke is available (because the buffer is empty) then the functions wait for a keystroke before returning.

Interrupt 16h function 1 and 11h are used to check for the presence of a keystroke in the keyboard buffer. If a keystroke is available in the buffer then the functions clear the zero flag and return the key scan code in AH and the character code translation in AL. If no keystroke is available then the functions return with the zero flag set. Note that these functions do not remove keystrokes from the buffer.

Note that the keyboard buffer has a limited size, and that failure to remove keystrokes from the buffer may cause it to fill up and the BIOS to start discarding keystrokes.

For the simplest of uses, like waiting for a single key press before ending a program that otherwise does not accept keyboard input, interrupt 16h function 0 or 10h will work OK. But for a program that does accept other keyboard input, before using one of these functions to wait for the final key press you must first "flush" the keyboard buffer, leaving it empty, as otherwise these functions will not wait.

; -------------------------------------------------------------
; This proc calls the BIOS Read Keyboard Status and Read
; Keyboard Input functions to flush the keyboard buffer,
; wait for a key press, and then flush the buffer again,
; leaving it empty. The BIOS scan code for the key pressed
; is returned in AH and the character code in AL.
; -------------------------------------------------------------

waitkey proc c
  @@:
    mov ah, 1
    int 16h                   ; Check for key press
    jz  @F                    ; Jump if buffer empty
    mov ah, 0
    int 16h                   ; Get key
    jmp @B                    ; Repeat
  @@:
    mov ah, 1
    int 16h                   ; Check for key press
    jz  @B                    ; Repeat
    mov ah, 0
    int 16h                   ; Get key
    push ax                   ; Preserve it
  @@:
    mov ah, 1
    int 16h                   ; Check for key press
    jz  @F                    ; Jump if buffer empty
    mov ah, 0
    int 16h                   ; Get key
    jmp @B                    ; Repeat
  @@:
    pop ax                    ; Recover key
    ret
waitkey endp

Title: Re: making it writable
Post by: bcddd214 on December 23, 2011, 07:30:32 PM
I think I got it using your code. I am hanging though??
http://pastebin.com/vm3n1LuP
Title: Re: making it writable
Post by: MichaelW on December 24, 2011, 01:45:03 AM
The code does not hang for me - it's just a matter of providing the right inputs in the right sequence.
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 01:47:59 AM
can you explain this?
Title: Re: making it writable
Post by: MichaelW on December 24, 2011, 02:13:51 AM
The calls to makewin and curpos return without user input.

The call to waitkey requires that you press a key.

The call to mouse requires that you click the left mouse button with the mouse cursor at the upper left-hand corner of the screen (or window in windowed mode), and then press a key.

The call to getchar requires that you press a key.
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 02:29:33 AM
Wow, none of this works for me. I am in a dos window on vista
clicking in the upper right hand corner does not release the screen and neither does any buttons for me??
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 02:35:26 AM
code..

http://pastebin.com/Ap1fjkhp
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 02:46:53 AM
I figure out how to release it, I will need to clean that up.

really the last thing is to put the cursor in the correct place and make it so when I type something it shows up on the blue screen. We have tried a a few things but can't seem to get this one last piece working?
Title: Re: making it writable
Post by: MichaelW on December 24, 2011, 02:48:54 AM
That's the upper left-hand corner, or character coordinate 0,0. I'm running Windows 2000 and I think Dave is running Windows XP MCE. Your problem may be Vista, is it 32-bit or 64-bit?
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 03:37:04 AM
32 bit vista
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 03:48:08 AM
How could I make a simple click to break and not worry about keyboard breaking the loop, only click of mouse?
I think one instruction would be best...
Title: Re: making it writable
Post by: MichaelW on December 24, 2011, 06:17:44 AM
You can simplify the mouse code to just check the left button status. If you will be running under Windows you can also eliminate the check for a mouse driver and the reset of the mouse driver so the code could be as simple as:

  @@:
    mov ax, 3
    int 33h
    test bx, 1
    jz  @B


If the program is running in a window, and the window has the input focus, to exit from the loop you just press the left mouse button with the mouse cursor anywhere over the client area of the window. If the program is running full-screen, then you just press the left mouse button with the mouse cursor anywhere.
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 06:20:01 AM
Wait, are you saying I can remove the entire mouse driver and switch it with those couple of lines? I love simple....
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 06:48:20 AM
I switched the driver out but no click action happens?

http://pastebin.com/ndFHjrsu
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 08:51:00 AM
it does work, but I still have to fight it???
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 02:13:24 PM
I am still trying to figure out how to get text on the screen too....  ?   :(
Title: Re: making it writable
Post by: bcddd214 on December 24, 2011, 04:02:21 PM
I just downgraded. I have one last task to complete.
Right now when I type, nothing happens in my blue window, what did I miss?
http://pastebin.com/CHtBj0Rw