Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Piotr Ćwikła via Freedos-user
Hi i think can be done ez with aliases, You can just write *aaa = A  or bbb=B and you not need return anything. :) *I have hope this can help or even easier if free dos can alias *space* then combination can be *space a =A or use dot command like in old word processor WordStar4.0 example --> .b

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Mercury Thirteen via Freedos-user
Regarding programmatic control of the keyboard LEDs, that was definitely possible. I have some od BASIC code I wrote in my early days which twiddle some bits in the byte at 0:0417 to accomplish it. Sent with Proton Mail secure email. On Thursday, February 8th, 2024 at 11:00 PM, Jerom

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Jerome Shidel via Freedos-user
Hi, > > To fake shifts, one can just modify the flags at 40:17 and 18. > It will not update the keyboard LEDs, but that is acceptable. > The BIOS itself uses 40:96 and 97 to track its own status. > It has been a very long time. But, if I recall correctly, I’m fairly sure you can programmatica

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread tom ehlert via Freedos-user
Hallo Herr Thomas Cornelius Desi via Freedos-user, am Donnerstag, 8. Februar 2024 um 13:18 schrieben Sie: > Hi, > is it possible in DOS (using BIOS?) to implement a tsr or so which allows the > following: > holding a key longer to return a SHIFT-key on screen? > Example: > press key »a« an

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Eric Auer via Freedos-user
Hi! https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/keyb/xkeyb/xkeyb-1994/XKEYB.TXT This seems one of those nifty keyboard drivers, but it has not time-critical functions I was more thinking in the direction of MKEYB or other int 15.4f based drivers: They see all key press and

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Thomas Cornelius Desi via Freedos-user
https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/dos/keyb/xkeyb/xkeyb-1994/XKEYB.TXT This seems one of those nifty keyboard drivers, but it has not time-critical functions… I would need a driver that counts how long a key has been pressed… Right? Thomas > On 08.02.2024, at 22:22, Thoma

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Thomas Cornelius Desi via Freedos-user
Thanks Eric for the info on Mielke, Sticky Keys ed al. I would like to know how such a »driver«, as you call it could be realized? I am not a programmer … Thomas > On 08.02.2024, at 15:30, Eric Auer via Freedos-user > wrote: > > > Hi! > > I am not aware of such drivers, but it would not

Re: [Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Eric Auer via Freedos-user
Hi! I am not aware of such drivers, but it would not be hard to write one. I think there already are drivers to make shift keys sticky, or to give audible feedback, as in my ancient locktone experiment inspired by Mielke.cc :-) Eric is it possible in DOS (using BIOS?) to implement a tsr or so

[Freedos-user] AUTO SHIFT keyboard on DOS??

2024-02-08 Thread Thomas Cornelius Desi via Freedos-user
Hi, is it possible in DOS (using BIOS?) to implement a tsr or so which allows the following: holding a key longer to return a SHIFT-key on screen? Example: press key »a« and HOLD the key for e.g. 500 milliseconds, => print shift-a = »A« on screen. Anyone around who has an idea or knowledg