Re: [M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Stephen Adolph
Sorry no, I don't have that. On Sat, Jan 7, 2023 at 10:26 AM Cedric Amand wrote: > Superb ! Thanks a lot, > > Could you also share - if you've got it - the WAV that one could record on > a cassette to "re create" romulus chess as it was initially shipped (on a > cassette) ? > > > > Le

Re: [M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Steve Baker
Greetings Cedric and all — I do have an original Romulus Chess cassette (complete in the grey Tandy cassette binder with the instruction manual and everything). Sadly neither of my two T200 units are operational so I haven’t had a way to test the cassette itself. What I can do is “record” the

[M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Stephen Adolph
Hello all you T200 REX# owners! Attached is a couple of RAM images that contain the ROMULUS Chess program! They are compatible with REX# running Release 2.1. I don't know if they will also work with REX. Perhaps someone can give it a try! Instructions on how to load the RAM images and run the

Re: [M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Cedric Amand
Superb ! Thanks a lot, Could you also share - if you've got it - the WAV that one could record on a cassette to "re create" romulus chess as it was initially shipped (on a cassette) ? Le 2023-01-07 16:06, Stephen Adolph a écrit : > > > Hello all you T200 REX# owners! > > > > Attached is a

Re: [M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Brian White
This means it should be possible to do the same from laddie or dlplus. You do still need ts-dos to be in rom, and so you do still need a rex of any flavor or an actual plain rom. -- bkw On Sat, Jan 7, 2023, 10:24 AM Stephen Adolph wrote: >

Re: [M100] Romulus Chess for T200 (REX# RAM images)

2023-01-07 Thread Stephen Adolph
https://www.mail-archive.com/m100@lists.bitchin100.com/msg07337.html I had forgotten about this. TS_DOS provides a means to load and run .CO directly. Kurt sent an earlier email about how to load the CHESS.CO and CHESSX.CO binaries that are here:

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread Ken Pettit
Correction to my instructions below: The cload "SAMPLE.CO" should be: loadm "SAMPLE.CO" I have been using CloudT too much lately I guess (if there is such a thing) and have "cload" drilled into my brain! ;-) Ken On 1/7/23 9:17 AM, Ken Pettit wrote: Hi Alex, I have one simple example

Re: [M100] One liner submission: base converter

2023-01-07 Thread Ken Pettit
On 1/7/23 8:30 AM, Stephen Adolph wrote: Here is my one-liner. FORZ=0TO1:Z=0:V$=" "+CHR$(13)+CHR$(8)+"0123456789ABCDEF":E=INSTR(V$,INKEY$):IFE=1THENNEXTELSEF=(F-(E=2))MOD3:G=9*F+2-F^2:C=-C*(E=2)-(C*G+E-4)*(E>3ANDE Hey Steve, I had seen this submission before but never really tried to run

Re: [M100] One liner submission: base converter

2023-01-07 Thread Stephen Adolph
thanks Ken, Not exactly new work, but it always bothered me that I had to use a line number before. so not really a "one liner". The use of a never ending for loop solved that! On Sat, Jan 7, 2023 at 2:19 PM Ken Pettit wrote: > On 1/7/23 8:30 AM, Stephen Adolph wrote: > > Here is my

Re: [M100] One liner submission: base converter

2023-01-07 Thread Ken Pettit
Yep, Pretty much the same with the one liner I made from John's character rasterization program ... just remove the line number "1" in front and it will still run from interactive mode. But I think your infinite loop is 2 characters shorter than mine! I used STEP0 which take 5 bytes where

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread John R. Hogerhuis
It's the necessary command in CloudT. Only way to get files in or out. I need to finish some testing and make another release. I added a simple assembler for use with BASIC. The idea is you can type any kind of data... hex, decimal, assembler instruction... and format it as raw bytes, hex,

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread Alex ...
Do you have any examples out there for how to build ML apps or option ROMs with VirtualT? On Tue, Jan 3, 2023 at 3:54 PM Ken Pettit wrote: > Hi, > > Willard Goosey (on this list) did some work a while back for compiling > with SmallC-85 and put together an M100 library for the same: > >

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread Ken Pettit
Hi Alex, I have one simple example in my Personal Libraries section at club100.org. It is under "Ken Pettit -> VirtualT IDE -> Sample" It is a very simple ASM project simply to show the features of the VirtualT IDE / Assembler and linker. The Assembler in VirtualT assembles each .ASM file

[M100] One liner submission: base converter

2023-01-07 Thread Stephen Adolph
Here is my one-liner. This is a remake of a prior submission that was actually a one line program that used line numbering. Here is the version that can just be typed in at the BASIC command prompt. The tricky bit is that it is only <255 characters if you use ? and not PRINT! This line of code

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread John R. Hogerhuis
On Sat, Jan 7, 2023, 10:21 AM Ken Pettit wrote: > Correction to my instructions below: > > The cload "SAMPLE.CO" should be: > > loadm "SAMPLE.CO" > > I have been using CloudT too much lately I guess (if there is such a > thing) and have "cload" drilled into my brain! ;-) > > Ken > > Maybe I

Re: [M100] New user (Hello!). Programming Tandy 102 without Basic?

2023-01-07 Thread Ken Pettit
On 1/7/23 11:43 AM, John R. Hogerhuis wrote: Maybe I should rename it to CloadT :-) You mentioned that you might. It does seem to be a popular / useful command in CloudT. I can't remember the last time I used that command otherwise ... surely sometime in the late 80's! :) Ken