Jump to content
IGNORED

VCF SE - Atlanta, GA July 19-21st


Recommended Posts

We are celebrating the TI-99/4’s 45th birthday this year.  Come join us!  Details:   https://vcfed.org/events/otherevents/vintage-computer-festival-southeast/
 

@OLD CS1, @Ksarul, and I will all likely be there!  And we will have the most complete 99/4 on exhibit for the first time, with every sidecar, including the video controller and P-Code thanks to @Ksarul

Thanks to @arcadeshopper for helping me with a working disk drive!  I’m setting the whole system (minus Jim’s components) up this weekend to test everything together and give it a good burn in!


I just need to find a good selection of compatible carts since the FinalGROM doesn’t like the 99/4 key map (it runs - but I can’t press any keys.)  Anyone know if there’s a patch for the FG for this?

 

I do lack are the original /4  Zenith TV and the original /4 joysticks, but that’s ok, the /4A’s monitor and pain sticks will be there to substitute!


Hope to see you there!

 

Tbis years draft shirt art:

image.thumb.png.349d14a41074a0152fdf18a55cfc0168.png
 

 

  • Like 9
Link to comment
Share on other sites

If not for the tee shirt design, I would not be rushing back from Alaska for the show.

 

@acadiel I have a bunch of carts that should be compatible with the /4, but then I reckon you have them, as well.  Let me know if there is anything you are missing and want me to bring.

 

This year, I am planning to have my regular assortment of exhibits: two board-mounted units, a standard and a QI, running Dragon's Lair and Don't Mess With Texas, respectively, a SuperSketch (still no way to print, sorry,) an F18A-enhanced system for playing, and this year a stock system on a TV via modulator and playing a selection of classics.  If I have room, the projector will be up, again, mainly for Dragon's Lair, but I will also be able to switch between all of the systems on display!

 

As with previous years, I will also be streaming the event on Rumble.  I expect to have cameras up facing the exhibits showing them in use, positioned to not catch faces of attendees, but I may forego the cameras in favor of more 4A outputs in the stream.  We shall see.

 

As well, if all goes to plan, I will have a vast selection of items for sale via consignment.

 

A very special thank you to @acadiel for his assistance this year.  If not for him letting me stash my exhibits at his place for a week, and my program manager's generousness in allowing me to return from Alaska a day early, I would not be able to do this show.

  • Like 3
Link to comment
Share on other sites

8 hours ago, acadiel said:

We are celebrating the TI-99/4’s 45th birthday this year.  Come join us!  Details:   https://vcfed.org/events/otherevents/vintage-computer-festival-southeast/
 

@OLD CS1, @Ksarul, and I will all likely be there!  And we will have the most complete 99/4 on exhibit for the first time, with every sidecar, including the video controller and P-Code thanks to @Ksarul

Thanks to @arcadeshopper for helping me with a working disk drive!  I’m setting the whole system (minus Jim’s components) up this weekend to test everything together and give it a good burn in!


I just need to find a good selection of compatible carts since the FinalGROM doesn’t like the 99/4 key map (it runs - but I can’t press any keys.)  Anyone know if there’s a patch for the FG for this?

 

I do lack are the original /4  Zenith TV and the original /4 joysticks, but that’s ok, the /4A’s monitor and pain sticks will be there to substitute!


Hope to see you there!

 

Tbis years draft shirt art:

image.thumb.png.349d14a41074a0152fdf18a55cfc0168.png
 

 

@acadielDoes the FinalROM have the same issue with the keys?

 

I'm gonna have to try to drive the 4.5 hours up from south GA. and attend too, if I can.

Edited by RickyDean
added content
Link to comment
Share on other sites

On 6/21/2024 at 9:20 AM, RickyDean said:

@acadielDoes the FinalROM have the same issue with the keys?

 

I'm gonna have to try to drive the 4.5 hours up from south GA. and attend too, if I can.

I haven't tried it, but it likely uses the same source or a derivative.  All the TI assembler is in here:  https://github.com/endlos99/finalgrom99/tree/master/ti and the code in question that is likely causing the issue is here: https://github.com/endlos99/finalgrom99/blob/master/ti/browser.a99

 

@Tursi can check me for correctness on this below file (I don't know remember if it's the authoritative one).  This was the header than @F.G. Kaal and I were using to turn his disk utilities into modules.  It had 99/4 support for lower case and the key scan in the boot code that the Final GROM can likely use.

 

We made this a long time ago - originally, it was the unspool code, then Tursi put all the 99/4 stuff in, and then we wound up with a very tightly, well written package that could copy any executable to 32K and cover the 99/4 and 99/4A very well.  Maybe someone can get this to the FinalGROM author to try?  Edit:  Just read through it - I don't see any key scan code - but I thought I had one that had some keyscan code.  I'll keep looking.  (I thought we had some cart header source that had some key scan differences, but maybe my memory is failing me.)  @Lee Stewart - you're a key scan guru - any ideas on why the above code in the 2nd Gitlab link isn't working on the 99/4?

 

* THREE PROGRAM HEADER FOR 32K BANKED SWITCHED CART
* TURSI 99/4 SUPPORT ADDED BASED ON HEXBUS 
* "COPY TO 32K AND RUN" CODE AND REFINED 2010
       DEF SFIRST,SLAST,SLOAD
       UNL

* ROM HEADER
       AORG >6000

SFIRST EQU $
SLOAD  EQU $

GRMHDR BYTE >AA,1,1,0,0,0
       DATA PROG
       BYTE 0,0,0,0,0,0,0,0

PROG   DATA 0
       DATA CF2K
       BYTE 8
       TEXT 'CF2K 2.0'
       EVEN

***************
* Copy Data for Modules *
* Format is:
* First, the address to load for the first source bank.
* Number of 32-bit words, source address, target address
* To end list, provide a start address greater than >8000
* (This means you can't start in the low RAM bank)
***************
CF2KDT DATA >6000
		DATA >076A,>6258,>A000,>076A,>6258,>BDA8
		DATA >076A,>6258,>DB50,>03BE,>7106,>2000
		DATA >A000

***************
* CF2K Module *
***************
CF2K	LWPI >8300
        LI R14,CF2KDT	 * address of copy table
	JMP COPYLP

***************
* Common Code *
***************
COPYLP	BL @GOGO * Set up Char Sets

		MOV *R14+,R7	 * get bank

ONEBLK	MOV *R14+,R4	 * Get bytes divided by 4
		JGT CONT		 * Branch if positive (less than >8000)
		B *R4			 * Else it's the jump address, so start the program

CONT	MOV *R14+,R9	 * Address to copy from
		MOV *R14+,R10	 * Address to copy to
		BL @COPYME		 * COPY IT!

		INCT R7			 * Next Bank

		JMP ONEBLK

****************
* Copy Routine *
****************
* R4  - Bytes Div 4
* R7  - Bank switch address
* R9  - Address to copy from
* R10 - Address to copy to
* R11 - Return spot

COPYME
    MOV R0,*R7   * Do the bank switch
LOOPIT
    MOV *R9+,*R10+
    MOV *R9+,*R10+
    DEC R4
    JNE LOOPIT
    B *R11         * We're done.

****************************
* Load lower case charsets *
****************************
* Note, if you still need space, you can remove support for the
* 99/4 by deleting the code marked between * +++ 99/4 support +++ begin/end
* blocks

GOGO
 MOV R11,R9   * Save our return spot

* +++ 99/4 support begin +++

* load R3 with 6 for 99/4, or 7 for 99/4A
 CLR R0
 BL @GPLSET
 BL @GETGPL   * read GROM >0000
 LI R3,7
 CI R0,>AA01  * 99/4 is AA01, all versions of 99/4A seem to be AA02 (even 2.2!)
 JNE IS4A     * note we also assume unknown is 99/4A just to be safe
 DEC R3

* make a copy of the capitals for the 99/4 to 'support' lowercase
* this will be partially overwritten by the main set, but it works!

 LI R0,>0018  * GPL vector address
 LI R1,>4A00  * dest in VDP - must OR with >4000 for write
 LI R2,>0040  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM
 JMP MNSET

* +++ 99/4 support end +++
* If you delete the above block, replace with
* LI R3,7
* so that the character size counter is still valid

IS4A
* 'lowercase' letters
 LI R0,>004A  * GPL vector address (not available for 99/4)
 LI R1,>4B00  * dest in VDP - must OR with >4000 for write
 LI R2,>001F  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM

* main set
MNSET
 LI R0,>0018  * GPL vector address
 LI R1,>4900  * dest in VDP - must OR with >4000 for write
 LI R2,>0040  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM
 B *R9        * RETURN TO CALLER

*****************
* GROM routines *
*****************

* Set GROM address
GPLSET
 MOVB R0,@>9C02
 SWPB R0
 MOVB R0,@>9C02
 B *R11

* Get a word from GPL
GETGPL
 MOVB @>9800,R0
 SWPB R0
 MOVB @>9800,R0
 SWPB R0
 B *R11

* Copy R2 characters from a GPL copy function vectored at
* R0 to VDP R1. GPL vector must be a B or BR and
* the first actual instruction must be a DEST with an
* immediate operand. Set R3 to 6 for 99/4 (6 byte characters)
* or 7 for a 99/4A (7 byte characters)
GPLVDP
 MOV R11,R10    * save return address
 BL @GPLSET     * set GROM address
 BL @GETGPL     * Get branch instruction (not verified!)
 ANDI R0,>1FFF  * mask out instruction part
 AI R0,3        * skip instruction and destination
 BL @GPLSET     * set new GROM address
 BL @GETGPL     * get actual address of the table
 BL @GPLSET     * and set that GROM address - GROM is now ready!

 SWPB R1        * assume VDP is already prepared for write to save space
 MOVB R1,@>8C02
 SWPB R1
 MOVB R1,@>8C02 * VDP is now ready!

 CLR R0
LP8
 MOVB R0,@>8C00 * pad the top of the char with a space
 MOV R3,R0      * then copy 7 (or 6) bytes

* +++ 99/4 support begin +++

 CI R3,6        * check for 99/4
 JNE LP9
 MOVB R0,@>8C00 * extra blank line for 99/4

* +++ 99/4 support end +++
* no changes needed if this block removed

LP9
 MOVB @>9800,@>8C00  * copy a byte (both sides autoincrement)
 DEC R0
 JNE LP9

 DEC R2         * next character
 JNE LP8

 B *R10

FINISH EQU $
SLAST  END

 

Link to comment
Share on other sites

On 6/23/2024 at 11:22 AM, acadiel said:

I haven't tried it, but it likely uses the same source or a derivative.  All the TI assembler is in here:  https://github.com/endlos99/finalgrom99/tree/master/ti and the code in question that is likely causing the issue is here: https://github.com/endlos99/finalgrom99/blob/master/ti/browser.a99

 

@Tursi can check me for correctness on this below file (I don't know remember if it's the authoritative one).  This was the header than @F.G. Kaal and I were using to turn his disk utilities into modules.  It had 99/4 support for lower case and the key scan in the boot code that the Final GROM can likely use.

 

We made this a long time ago - originally, it was the unspool code, then Tursi put all the 99/4 stuff in, and then we wound up with a very tightly, well written package that could copy any executable to 32K and cover the 99/4 and 99/4A very well.  Maybe someone can get this to the FinalGROM author to try?  Edit:  Just read through it - I don't see any key scan code - but I thought I had one that had some keyscan code.  I'll keep looking.  (I thought we had some cart header source that had some key scan differences, but maybe my memory is failing me.)  @Lee Stewart - you're a key scan guru - any ideas on why the above code in the 2nd Gitlab link isn't working on the 99/4?

 

* THREE PROGRAM HEADER FOR 32K BANKED SWITCHED CART
* TURSI 99/4 SUPPORT ADDED BASED ON HEXBUS 
* "COPY TO 32K AND RUN" CODE AND REFINED 2010
       DEF SFIRST,SLAST,SLOAD
       UNL

* ROM HEADER
       AORG >6000

SFIRST EQU $
SLOAD  EQU $

GRMHDR BYTE >AA,1,1,0,0,0
       DATA PROG
       BYTE 0,0,0,0,0,0,0,0

PROG   DATA 0
       DATA CF2K
       BYTE 8
       TEXT 'CF2K 2.0'
       EVEN

***************
* Copy Data for Modules *
* Format is:
* First, the address to load for the first source bank.
* Number of 32-bit words, source address, target address
* To end list, provide a start address greater than >8000
* (This means you can't start in the low RAM bank)
***************
CF2KDT DATA >6000
		DATA >076A,>6258,>A000,>076A,>6258,>BDA8
		DATA >076A,>6258,>DB50,>03BE,>7106,>2000
		DATA >A000

***************
* CF2K Module *
***************
CF2K	LWPI >8300
        LI R14,CF2KDT	 * address of copy table
	JMP COPYLP

***************
* Common Code *
***************
COPYLP	BL @GOGO * Set up Char Sets

		MOV *R14+,R7	 * get bank

ONEBLK	MOV *R14+,R4	 * Get bytes divided by 4
		JGT CONT		 * Branch if positive (less than >8000)
		B *R4			 * Else it's the jump address, so start the program

CONT	MOV *R14+,R9	 * Address to copy from
		MOV *R14+,R10	 * Address to copy to
		BL @COPYME		 * COPY IT!

		INCT R7			 * Next Bank

		JMP ONEBLK

****************
* Copy Routine *
****************
* R4  - Bytes Div 4
* R7  - Bank switch address
* R9  - Address to copy from
* R10 - Address to copy to
* R11 - Return spot

COPYME
    MOV R0,*R7   * Do the bank switch
LOOPIT
    MOV *R9+,*R10+
    MOV *R9+,*R10+
    DEC R4
    JNE LOOPIT
    B *R11         * We're done.

****************************
* Load lower case charsets *
****************************
* Note, if you still need space, you can remove support for the
* 99/4 by deleting the code marked between * +++ 99/4 support +++ begin/end
* blocks

GOGO
 MOV R11,R9   * Save our return spot

* +++ 99/4 support begin +++

* load R3 with 6 for 99/4, or 7 for 99/4A
 CLR R0
 BL @GPLSET
 BL @GETGPL   * read GROM >0000
 LI R3,7
 CI R0,>AA01  * 99/4 is AA01, all versions of 99/4A seem to be AA02 (even 2.2!)
 JNE IS4A     * note we also assume unknown is 99/4A just to be safe
 DEC R3

* make a copy of the capitals for the 99/4 to 'support' lowercase
* this will be partially overwritten by the main set, but it works!

 LI R0,>0018  * GPL vector address
 LI R1,>4A00  * dest in VDP - must OR with >4000 for write
 LI R2,>0040  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM
 JMP MNSET

* +++ 99/4 support end +++
* If you delete the above block, replace with
* LI R3,7
* so that the character size counter is still valid

IS4A
* 'lowercase' letters
 LI R0,>004A  * GPL vector address (not available for 99/4)
 LI R1,>4B00  * dest in VDP - must OR with >4000 for write
 LI R2,>001F  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM

* main set
MNSET
 LI R0,>0018  * GPL vector address
 LI R1,>4900  * dest in VDP - must OR with >4000 for write
 LI R2,>0040  * how many chars
 BL @GPLVDP   * this function goes somewhere later in your ROM
 B *R9        * RETURN TO CALLER

*****************
* GROM routines *
*****************

* Set GROM address
GPLSET
 MOVB R0,@>9C02
 SWPB R0
 MOVB R0,@>9C02
 B *R11

* Get a word from GPL
GETGPL
 MOVB @>9800,R0
 SWPB R0
 MOVB @>9800,R0
 SWPB R0
 B *R11

* Copy R2 characters from a GPL copy function vectored at
* R0 to VDP R1. GPL vector must be a B or BR and
* the first actual instruction must be a DEST with an
* immediate operand. Set R3 to 6 for 99/4 (6 byte characters)
* or 7 for a 99/4A (7 byte characters)
GPLVDP
 MOV R11,R10    * save return address
 BL @GPLSET     * set GROM address
 BL @GETGPL     * Get branch instruction (not verified!)
 ANDI R0,>1FFF  * mask out instruction part
 AI R0,3        * skip instruction and destination
 BL @GPLSET     * set new GROM address
 BL @GETGPL     * get actual address of the table
 BL @GPLSET     * and set that GROM address - GROM is now ready!

 SWPB R1        * assume VDP is already prepared for write to save space
 MOVB R1,@>8C02
 SWPB R1
 MOVB R1,@>8C02 * VDP is now ready!

 CLR R0
LP8
 MOVB R0,@>8C00 * pad the top of the char with a space
 MOV R3,R0      * then copy 7 (or 6) bytes

* +++ 99/4 support begin +++

 CI R3,6        * check for 99/4
 JNE LP9
 MOVB R0,@>8C00 * extra blank line for 99/4

* +++ 99/4 support end +++
* no changes needed if this block removed

LP9
 MOVB @>9800,@>8C00  * copy a byte (both sides autoincrement)
 DEC R0
 JNE LP9

 DEC R2         * next character
 JNE LP8

 B *R10

FINISH EQU $
SLAST  END

 

 

I don’t have access to commented code for the 99/4 console ROM, so I can’t walk the code that matters. What I can say is that the likely culprit is in the following code:

input:
       mov  r7, @more_items
       li   r0, >9e7e
       mov  r0, @>8372        ; restore stack pointers for SCAN
       li   r0, >05ff
       mov  r0, @keymode
wait_key:

 

Storing >05FF at >8374 tells KSCAN to use keyboard (KBD) #5. The >FF gets stored in >8375 to initialize it to “no key pressed”. On the 99/4A, KSCAN stores keyboard#–3 (if KBD# is 3[99/4 mode], 4[Pascal mode], or 5[Basic mode]) at >83C6 (2 in this case) and then zeroes >8374 (which tells KSCAN to check >83C6 for the default KBD#). Since the 99/4 does not know KBD#s other than 0[whole KBD], 1(left-side KBD), and 2(right-side KBD), there is no reason to zero >8374. And, it does not, to my knowledge, do anything with >83C6. By changing >8374 to 5, the above code has effectively disabled KSCAN on the 99/4. This is easy to verify in Classic99 (99/4 mode) by opening the debugger and setting >8374 to 5. From that point on, >8374 never changes and keypresses are ignored until the next software change of KBD# to 0, 1, or 2. FYI, you can also disable KSCAN (until KBD# is properly set to 0, 1, 2, 3, 4, or 5) on the 99/4A by setting the KBD# higher than 5.

 

I would change the value stored at >8374 to >00FF.

 

If there is some concern that the keyboard number for a 99/4A has changed, then it could be rewritten to test for the 99/4A before putting 5 at >8374.

 

...lee

Edited by Lee Stewart
BETTER EXPLANATION
  • Like 2
Link to comment
Share on other sites

7 hours ago, Lee Stewart said:

 

I don’t have access to commented code for the 99/4 console ROM, so I can’t walk the code that matters. What I can say is that the likely culprit is in the following code:

input:
       mov  r7, @more_items
       li   r0, >9e7e
       mov  r0, @>8372        ; restore stack pointers for SCAN
       li   r0, >05ff
       mov  r0, @keymode
wait_key:

 

Storing >05FF at >8374 tells KSCAN to use keyboard #5. The >FF gets stored in >8375 to initialize it to “no key pressed”. On the 99/4A, KSCAN stores keyboard#–3 at >83C6 (2 in this case) and then zeroes >8374. Since the 99/4 does not know what a keyboard number is, it does not zero >8374 unless a joystick was activated and it does not change >83C6. By changing >8374 to 5, the above code has effectively disabled KSCAN on the 99/4. This is easy to verify in Classic99 (99/4 mode) by opening the debugger and setting >8374 to 5. From that point on, >8374 never changes and keypresses are ignored.

 

I would change the value stored at >8374 to >00FF.

 

If there is some concern that the keyboard number has changed, then it could be rewritten to test for the 99/4A before putting 5 at >8374.

 

...lee

Thanks, Lee!  I updated the Git issue and we will see if we can try it!

 

Edit:  I got your update and edited the Git issue and linked to your revision.  Thank you!

 

  • Like 2
Link to comment
Share on other sites

On 7/3/2024 at 12:57 PM, arcadeshopper said:

@ralphb hey Ralph, Jon ( @acadiel ) asked me to ping you regarding this, he's made a note in your github regarding 99/4 compatibility with the keyscan routine

All patched - new thread here - I have it working.  

@ralphb - there were quite a few incompatibilities with the FinalGROM scripts and your cross assemblers, specifically looking for .asm files vs .a99 files, as well as some library pathing issues (I solved that by putting the "ti" directory in the xdt directory - and copied the libs over too.)  FWIW, I was on a Mac.

 

 

 

  • Like 2
Link to comment
Share on other sites

  • 2 weeks later...

Well, I am sorry to say that as I was caught up in the whole Microsoft outage thing.  I am stuck in San Francisco until Saturday night, which means that I will not have time to set up or run my exhibit, but I will be able to hang out with everybody and go check out things for once. So, I will see everybody Saturday evening.

  • Like 1
  • Sad 1
Link to comment
Share on other sites

4 hours ago, HOME AUTOMATION said:

...The names change, but the issues ...remain.

CrowdStrike CEO is the same guy who was CTO at McAfee when a McAfee update bricked millions of Windows XP SP3 machines back in 2010.  Shitty habits roll downhill.

 

https://archive.is/36Nsd

 

(The article, however, incorrectly states the problem was that a critical Windows file was "deleted."  In fact, McAfee detected svchost.exe as a malicious file and quarantined it. https://archive.is/seLwa )

  • Like 1
  • Sad 1
Link to comment
Share on other sites

Alright... I am finally in ATL.  Avis did not have any cars, but I got one.  The Sheraton cancelled my room, but I got one.  Now, if I can just get my baggage, that will be a three-fer.

 

See everyone in the morning.

  • Like 3
Link to comment
Share on other sites

2 hours ago, OLD CS1 said:

Alright... I am finally in ATL.  Avis did not have any cars, but I got one.  The Sheraton cancelled my room, but I got one.  Now, if I can just get my baggage, that will be a three-fer.

 

See everyone in the morning.

Would have loved to attend. Is the VCF SE the most popular one for TIers? I can plan on attending one of these events next year, but I'm not sure which one. And is it always in Atlanta?

Link to comment
Share on other sites

7 hours ago, Vorticon said:

Would have loved to attend. Is the VCF SE the most popular one for TIers? I can plan on attending one of these events next year, but I'm not sure which one. And is it always in Atlanta?

Dunno about most popular for the TI, but between Mark, John, and myself, we could easily take it over!

 

VCFSE is related to the Atlanta Historical Computing Society, so it is likely to be in Atlanta (or surrounding area,) probably at SFGE so long as they will have us. @acadielknows more about these relationships, I believe.

Link to comment
Share on other sites

2 hours ago, Tursi said:

I tried to look at flights a couple weeks ago, but the hotels were booked solid. How many people were at the show? 

 

I had to book a hotel about 10 miles from the event, took about 20-30 minutes of driving through Atlanta traffic to get there, but since it was not directly close to the event there were some rooms available on Wednesday night. cost me 177 per night plus taxes, fees, and incidentials for the two nights there. As for a total of people , I'll let the individuals who were there most of each day, weigh in.

  • Like 1
Link to comment
Share on other sites

10 minutes ago, RickyDean said:

I had to book a hotel about 10 miles from the event, took about 20-30 minutes of driving through Atlanta traffic to get there, but since it was not directly close to the event there were some rooms available on Wednesday night. cost me 177 per night plus taxes, fees, and incidentials for the two nights there. As for a total of people , I'll let the individuals who were there most of each day, weigh in.

SFGE normally sells the hotels out by itself, but to give data about the three surrounding hotels that are booked for SFGE (the event that hosts us), the blocks that are reserved for us sell out within an hour or two of being posted the fall before next year's show.  Plus, we had I believe two games going on this year - one in Truist Park (right across the interstate) and another either at State Farm Arena (more likely) or Mercedes Benz Stadium (less likely).  Nearby hotels are all jam packed, and you have to go about ~25-30 minutes out to get a room typically.  I bought my hotel rooms at the host hotel right after the block got announced for $179/night (within the hour that they sold out last October I believe.) 

 

We really do need to get a counter installed at our door to count people, but traffic is very steady.  I have a mechanical 24V counter and a RadioShack IR sensor, but need something to pulse the relay faster than I can with just a circuit that's controlling the 24V PSU and the relay with the switch from the IR sensor.  I couldn't get it working in time for this year.

 

Link to comment
Share on other sites

Randy Kindig's Tandy let's out some magic smoke.

 

 

IMG_2366.thumb.JPG.b606ebd0420bccb0dd15eb4e1159ac81.JPG

Some old guys.  (j/k - LOL!)  - Jon/Alan/Jim 

 

IMG_2357.thumb.JPG.7ac20087e2aa811f12fafbcacbecd8e8.JPG

Jon / Steve Leininger (designer of the TRS-80)

 

IMG_2355.thumb.JPG.c8d061fac45c403ef336df72d040dbc3.JPGIMG_2354.thumb.JPG.10020a441b4861acf38b5884f8b6783d.JPGIMG_2353.thumb.JPG.9788fe1c69bb15630de3594a6702368c.JPGIMG_2352.thumb.JPG.512f82ccb22914c4ffb0b10ded9271b2.JPG

Beautiful Altair 8800 (working!) exhibit

 

IMG_2351.thumb.JPG.18b7851c44cbc8498188b2d15356b97c.JPGIMG_2350.thumb.JPG.ae924d8fae168017daba6db2bf3ed7bd.JPGIMG_2349.thumb.JPG.ee0b19f154e334740933dfbd22f13ea9.JPGIMG_2348.thumb.JPG.1ec77525c9b634be306a7279bdff5a31.JPGIMG_2347.thumb.JPG.07663c2974f47a005910eff910aa229d.JPGIMG_2346.thumb.JPG.c62334d539401fa62b9aee5ca5511778.JPGIMG_2345.thumb.JPG.9fdf12596ee2c0caefaed8e0a346be1c.JPGIMG_2344.thumb.JPG.906d75f99bb9ebad8e361b257ed224b7.JPGIMG_2343.thumb.JPG.74ddaf6d8a079b65ff043f6571e776fd.JPG

A bunch of consignment - this gentleman and his son even sold several TI-99/4A systems.

 

 

IMG_2342.thumb.JPG.60f1bd06cece47e6872797d42c71ad40.JPGIMG_2338.thumb.JPG.bb9677fefe745595a0096f18a9990cfd.JPGIMG_2334.thumb.JPG.9454dd8d540a934cdb2b17eb99a33b12.JPG

Steve Leininger answers more questions after his presentation.

 

IMG_2339.thumb.JPG.742a86be79323e617d51b1f7ec13b92f.JPGIMG_2323.thumb.JPG.9710bf73aed8f9ac816233c0676c1f19.JPGIMG_2320.thumb.JPG.9e44e5c55f74a8b7931ce6fbf800e8cf.JPG

David Kuder (The A2VGA Designer and also designing a NABU SD boot card) and Leo Binkowski (from the NABU Network in Canada) answer questions about the NABU.  Jon G and Leo.

IMG_2331.thumb.JPG.284bb80a037681a7ca78031417570e54.JPG

These two had to be the most competitive BLASTO players I've ever seen.  WOW!  Been a while since I've seen someone enjoy playing it that much! :)

 

IMG_2327.thumb.JPG.8060cdd1bbad5354cc7fa0c8adb07a21.JPGIMG_2325.thumb.JPG.98c913e8cb42d99a50e645ac2017b9d0.JPG
 

Some back and side views of the full TI-99/4 expansion train - this is the fully expanded system.  Speech, 32K, RS232, P-Code, thermal Printer, Disk, and Video Controller.  You needed quite the table!  A side note is nothing could go to the right of the video controller, as it was the connection for the VCR cables (EDGE card breakout.)

 

IMG_2324.thumb.JPG.7c9cc39ccc62ded6a032d2d2a9d06281.JPG

 

I took a picture of this at the sale expo for nothing other than pure interest - this was a Japanese Super Famicom (SNES) retail demo unit that let you play cartridges on a timed loop (like the NES ones here in the US did back in the day.)

 

IMG_2318.thumb.JPG.522458b78e76239e6a7c09e4cb17d4e1.JPG

@Ksarul's Dimension 4 prototype.  

IMG_2316.thumb.JPG.8ae5f616ef3dc98921ac51caf52d2c5b.JPGIMG_2315.thumb.JPG.3be8b5202486eb76a8c2a4636e5c966d.JPG

 

Some more old guys posing for the camera behind the fully expanded /4 system.  (Jon/Jim)

 

IMG_2310.thumb.JPG.b3c18f46ac2b1c540bf0f4eae7514786.JPGIMG_2308.thumb.JPG.b70d3e0a4fa1070e7dbdb905d9b3c2c5.JPG

 

Here you can see the P-Code booting up on the /4.  There's no "disable" switch.  It beeps several times, takes a minute or two, and you have to hit "H" for "Halt" to get to the title screen.

 

IMG_2298.thumb.JPG.cfc9c521a41b62b74d723eee5c3ba1cf.JPGIMG_2297.thumb.JPG.53f025e9c7e5f1255f6bec4d135f0fd5.JPG

 

The TI-99/4 on the left is running the F/18A and is running the TI MegaDemo, which it ran like a champ the entire time.

 

IMG_2296.thumb.JPG.6d87d5b7a18dd22ac2ff7fbeeb735059.JPGIMG_2304.thumb.jpg.c36227aceced68ee49e64bff8994e79e.jpg

Notice the shirts we had in front - if you zoom in, notice what we did with the front and back of them.  This was this year's theme shirt. :)  (And yes, we have some left, but they are only 4X and 5X.  We sold out of all the other sizes!!!)  My 1A2 phone exhibit (Seriss 1A2 system) hooked to the British PAX switch in the back of the room and a VoIP line accompanied the TI exhibit on what was left of the two tables, and was a smash hit as well.

 

IMG_2238.thumb.JPG.4cef97aba9b511ec0b3d3d4d31660448.JPGIMG_2237.thumb.JPG.1223efc9c9f49e77b4e00628711bbc47.JPG

 

Close ups of the P-Code and Video controller sidecars.

 

IMG_2236.thumb.JPG.fc32b823b90116074c99f42d8ebe6252.JPGIMG_2235.thumb.JPG.eb53af27b4cbdbe47ccbc4a10ba44022.JPG

 

More views of the sidecars.

 

 

IMG_2286.thumb.JPG.11d95836e12cf9368c0e2368102dd910.JPGIMG_2285.thumb.JPG.526309b3d62f08a61f0e3437ed1a96b3.JPGIMG_2277.thumb.JPG.9d2c20958c4fd29a277fafffd84a124b.JPGIMG_2276.thumb.JPG.7e4c33c2a967f3c181616c6ea0c3b620.JPG

 

The British PAX switch setup at the back of the room and the in-room telephone network that was part of this year's show.  Yes, you could use a Captain Crunch whistle.

 

IMG_2279.thumb.JPG.94ac2a1f64ce03e86331dc73c79495e5.JPGIMG_2273.thumb.JPG.61eb6f69300a7bc6c8e67f106b292f9a.JPG

 

The rest of the phone exhibit. :)

 

IMG_2242.thumb.JPG.474eefae47da122d4ddebfb22d144f19.JPGIMG_2243.thumb.JPG.4a18ccf2157a01b30f7f6a455ed63763.JPG

 

A TI Advantage club T-shirt!  And Yes, someone was kind enough to leave a note for @OLD CS1

IMG_2307.thumb.JPG.2c0dd7be973ad96071684452588e2e21.JPGIMG_2294.thumb.JPG.0b7c955e4a1784d4af5e01e57ff2fc41.JPGIMG_2293.thumb.JPG.506cfa9f75f9057775ceee46f7a7dc93.JPGIMG_2292.thumb.JPG.c5f48f1a2bb6a1f38d188c135021ec3d.JPGIMG_2291.thumb.JPG.04b9b9fa28b9a5e5158af37424b43a3a.JPGIMG_2290.thumb.JPG.e1ad92469be620bd13882722b4fb5ffc.JPGIMG_2289.thumb.JPG.522f5dae9c12580c86b9ffd413bf7511.JPGIMG_2287.thumb.JPG.b024208e728b9174d4bb23bb46d705cd.JPGIMG_2284.thumb.JPG.7376d0c8cb206b4b25880ba0dbcaef17.JPGIMG_2283.thumb.JPG.1becf0b733ec5431484f8a7490fe0fd4.JPGIMG_2282.thumb.JPG.3f780f45c21fe3dccd55175a04550dba.JPGIMG_2281.thumb.JPG.c84999740d5e20f87472fa1a778ff206.JPGIMG_2280.thumb.JPG.677a0bd8bd1f2960b37e40985c95f490.JPGIMG_2275.thumb.JPG.e8d35c3f25ccee526605893c0d784872.JPG
 

 

Various exhibits from around the room.  Including Weather Channel computers!  Yes, these are actual generations of systems used to display the messages.


IMG_2306.thumb.JPG.4f5e7ca018570bedcd04eb396e5cf4ce.JPGIMG_2270.thumb.JPG.d40d825f9e153784cb0431ce12b03ad9.JPGIMG_2269.thumb.JPG.1a0e05a5651ab9b7262c5b1e5cd6912c.JPGIMG_2268.thumb.JPG.405af6eaec12e5db2a39e8488bdbdea4.JPGIMG_2267.thumb.JPG.bdda434bff6f810d0ab139142aa15148.JPGIMG_2266.thumb.JPG.f177c84aae30842eb970cfcbf29916b0.JPGIMG_2265.thumb.JPG.668392d63bc3861d0ee62d058f56fbcc.JPGIMG_2264.thumb.JPG.79c911377ceacdb6376c972db42ae5b5.JPGIMG_2263.thumb.JPG.cffb27cc5bc4e671ae95ba362660c15e.JPGIMG_2262.thumb.JPG.192131194241f0e1b0f90b29d08c7c85.JPGIMG_2261.thumb.JPG.a80cf8f0cc2bd44f12a8ae9fa5544a59.JPGIMG_2260.thumb.JPG.731838981c1844faa75914488472a6cc.JPG

 

Midrange Madness - including a beautiful IBM System/34 that kept overheating its 240V step-up transformer, sadly.  Beautiful systems!

 

IMG_2259.thumb.JPG.fbc6e91b6d2be8d336bbe87e48d606c4.JPGIMG_2258.thumb.JPG.1de343bce2ab86b4f2180ea546775535.JPGIMG_2256.thumb.JPG.b71db2203a6522e7677ef4b5f9c0eee5.JPGIMG_2255.thumb.JPG.941ef408249a76942e62e21e4738539e.JPGIMG_2253.thumb.JPG.83cf19a72518ad0f6c1b1bb9c769e242.JPGIMG_2252.thumb.JPG.decf61ce6dab19461d18d4a6619836d5.JPGIMG_2251.thumb.JPG.e07a6fbe4e5fa948d7a9e9b90facdac8.JPGIMG_2249.thumb.JPG.2587c1bbd52496a2129ff63023de56e1.JPGIMG_2247.thumb.JPG.76581a8eed964566ecba153cd345db9d.JPGIMG_2246.thumb.JPG.9e4a814e260a296ffcbef563a6961255.JPGIMG_2245.thumb.JPG.32b80cfcd1907bb76d0e3fe42a2ce869.JPGIMG_2244.thumb.JPG.b8ad321b248351e31f7433a0c92efd8a.JPG

 

More around the room. The college student in the last picture, Nolan, is the that designed this year's 99/4 T-shirt.

 

 

IMG_2248.thumb.JPG.1b4ec2b0f0e260fca0818338d2a0677a.JPGIMG_2233.thumb.JPG.d82cd0405b29ebdf0f2a43fbee73eeb1.JPG

Our banner, and my exhibit prep (it's not that much, thank goodness... most of it was consignment.  I'm so thankful for my wife, @Ksarul, @OLD CS1, and others for all the help while I haven't been feeling well this past weekend.)

IMG_2272.JPG

IMG_2295.JPG

  • Like 9
  • Thanks 2
Link to comment
Share on other sites

Normality has returned for me.  My baggage came it around 11:45pm, I picked up my car around 2am, and I am heading home soon.  It could have been a lot worse -- many people are still suffering from the effects of Thursday.  A shout out to several people, some who will likely never see this:

  • Shannon DeWitt (SFGE) - Helping me secure my SFGE group room in the Sheraton in the first place.
  • Shatique, front desk agent at Sheraton Suites Galleria - Finding me a no-show room after my reservation had been cancelled while I was en-route, caused by an unfortunate miscommunication.
  • Susie, United Airlines baggage manager at ATL, and superhero - calling SFO to find out why none of the bags for ATL had been moved since Thursday night, and getting my baggage here ASAP.
  • Earl Baugh, AHCS/VCF-SE - Making sure I got my 99/4 45th Anniversary shirt, good humor over the whole situation, and a six pack of consolation when I got in.
  • @acadiel - keeping my exhibit in his garage this whole time and just being an all around froody dude, and Cara for the cookies!
  • @RickyDean - Trudging up to hang out.
  • @Ksarul - Trudging down to hang out, show off his Dimension 4, and possibly talking me into coming up to Chicago another year.  Look forward to seeing you next year, @iliketurtles !
  • David, Eli, and Mom - visiting again this year and hanging out for a bit.  Eli gave me a good reason to go check out the indy game area, and I was not disappointed.  David, remember to hit me up every once-in-a-while about the SX-64.

"We've been... CrowdStrike struck!"

  • Like 5
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...