Merry Christmas One and All
Merry Christmas One and All
Hi folks,
Just got done wrapping the kids presents and it got me all Christmassy and fuzzy feeling (that could have been the beer, though!).
Hope you are having a great time over the Xmas period and that you get time to tinker with your Memotech systems. I personally, am hoping to fiddle with some software, get to understand how to use the oscilloscope that I got six-months ago and maybe work on a hardware project, time willing.
All the best.
Just got done wrapping the kids presents and it got me all Christmassy and fuzzy feeling (that could have been the beer, though!).
Hope you are having a great time over the Xmas period and that you get time to tinker with your Memotech systems. I personally, am hoping to fiddle with some software, get to understand how to use the oscilloscope that I got six-months ago and maybe work on a hardware project, time willing.
All the best.
Steve G
Danish Memotech MTX 512, MFX and loving it
Danish Memotech MTX 512, MFX and loving it
Re: Merry Christmas One and All
Season's Greetings one and all!
The MTX has been on this morning, (failing to replicate some issues Dave's having) and will probably be on again later. It wouldn't be the holidays without some MTX time.
The MTX has been on this morning, (failing to replicate some issues Dave's having) and will probably be on again later. It wouldn't be the holidays without some MTX time.
Re: Merry Christmas One and All
Merry Christmas

Mark

Mark


“There are four lights!”
Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb

Autumn is here. Bye bye summer 2024...
Not as many MTXs as Dave!

-
- Posts: 87
- Joined: 11 Aug 2012 22:13
Re: Merry Christmas One and All
Happy Christmas and I hope its a good one for you all 

Re: Merry Christmas One and All
Merry Christmas and thanks for all the help throughout the year.
Hope Santa is kind.
Hope Santa is kind.
-
- Posts: 341
- Joined: 27 Nov 2016 19:58
Re: Merry Christmas One and All
Merry Christmas!
Re: Merry Christmas One and All
Happy New Year folks!!
So, a bit late for Xmas but there was a Vintage Computer Christmas Challenge to recreate this image: In any language, but make it as small as possible. So here is my effort: The code is this:
Definitely could do some other things to make it smaller. However, why are Memotech SDX Basic files so big?
8 records is 128x8, which is 1024 bytes. Seems quite a lot. So I went back and did a simple:
and that is 5 records, a whopping 640 bytes. Seems a bit large to me?
So, a bit late for Xmas but there was a Vintage Computer Christmas Challenge to recreate this image: In any language, but make it as small as possible. So here is my effort: The code is this:
Code: Select all
5 CSR 11,0: PRINT "MEMOTECH MTX BASIC"
6 CSR 0.5: PRINT "#VCCC2023";: CSR 30,7: PRINT "CHRISTMAS";
7 CSR 30,8: PRINT "CHALLENGE"
10 LET STX=6: LET MINX=8
20 LET P=0: LET ST=1
30 FOR y=2 TO 20
40 FOR X=0 TO P
50 FOR STAR=O TO 2
60 LET POINT=((STAR+1)*STX)+MINX+P
65 CSR POINT,Y: PRINT "*";
66 CSR (POINT-2*P),Y: PRINT "*";
70 NEXT STAR
80 NEXT X
90 LET P=P+ST
95 IF P=3 THEN LET ST=-ST
105 IF P=0 THEN LET ST=-ST
110 NEXT Y
120 PAUSE 8000
8 records is 128x8, which is 1024 bytes. Seems quite a lot. So I went back and did a simple:
Code: Select all
10 PRINT "MEMOTECH MTX 2023";
20 GOTO 10
Last edited by gunrock on 03 Jan 2024 11:24, edited 1 time in total.
Steve G
Danish Memotech MTX 512, MFX and loving it
Danish Memotech MTX 512, MFX and loving it
Re: Merry Christmas One and All
The system variables and the default sound buffers are saved with a basic file.
For disc basoc typically that's 4 + 0x259, or 605 bytes. before you get to the actual basic listing.
For disc basoc typically that's 4 + 0x259, or 605 bytes. before you get to the actual basic listing.
Re: Merry Christmas One and All
Thanks Martin. Interesting that SDX basic saves the sound buffers? I mean, ordinary MTX basic doesn't, does it? Odd decision, or so it seems.
Steve G
Danish Memotech MTX 512, MFX and loving it
Danish Memotech MTX 512, MFX and loving it