Re: [Freedos-devel] CHAR: echo ascii characters

2024-03-01 Thread Lukáš Kotek via Freedos-devel
Hello, I just encountered the very same issue with alt + keycode not working in case of QEMU. I used your program to generate these chars (well, at first I wrote very similar code by myself, and later I found you already resolved and published your code here :). Thanks for that! I have one m

Re: [Freedos-devel] CHAR: echo ascii characters

2021-08-01 Thread Jim Hall
Well, I originally said the use case was "how to get a list of extended ASCII characters into a file on FreeDOS" .. so really, I mean *extended* ASCII here. And yes, any code less than 0 or greater than 255 is not valid extended ASCII, so that's why I print those invalid code requests as '?' to ind

Re: [Freedos-devel] CHAR: echo ascii characters

2021-08-01 Thread Robert Riebisch
Hi Jim, > So if you want to print out the degree symbol (ASCII decimal 248) you > would type: > > char 248 > > (ASCII codes not in 0-255 are printed as '?' instead.) Would ASCII codes "not in 0-255" still be ASCII codes? ;-) Original ASCII is only 128 chars, by the way. Cheers, Robert --

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread Jim Hall
Thanks! I'll copy these into a wiki page, so we can have them for reference in one spot. I'll do that this weekend. Jim On Fri, Jul 30, 2021, 8:26 PM wrote: > For a fairly comprehensive* list I ran across this site, it lists code > pages and the first version of DOS seen > > https://www.aivos

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread perditionc
For a fairly comprehensive* list I ran across this site, it lists code pages and the first version of DOS seen https://www.aivosto.com/articles/charsets-codepages-dos.html * where by comprehensive I mean just DOS based code pages, not including the many additional ones available in other OSes suc

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread Bret Johnson
> 248 is the degree symbol on every codepage referenced in the MS-DOS 5> manual > on my bookshelf: 437 (English), 850 (Multilingual - Latin I), > 852 (Slavic - Latin II), 860 (Portugal), 863 (Canadian-French), 865 > (Nordic) It would take me a while to research again, but I identified > several

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread Andrew Bird via Freedos-devel
Just for referance Alt-248 works on Dosemu2, but of course depending on your window manager it could be eaten before Dosemu2 sees it. ___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedo

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread Jim Hall
On Fri, Jul 30, 2021 at 5:20 PM Bret Johnson wrote: [..] > First of all, you say that this is intended to put ASCII codes into > a file, but it just writes them to the screen. You indicate the > user was asking how to inject them into a file. The most obvious > way I can see to do that (though c

Re: [Freedos-devel] CHAR: echo ascii characters

2021-07-30 Thread Bret Johnson
Jim: A couple of questions & comments on this. First of all, you say that this is intended to put ASCII codes into a file, but it just writes them to the screen. You indicate the user was asking how to inject them into a file. The most obvious way I can see to do that (though certainly not the