-
Content Count
3,086 -
Joined
-
Last visited
Posts posted by Roydea6
-
-
Does anyone know why it doesn't work with Xformer 200 for Windows v.8 ???
But if it does am I missing a setting somewhere ???
thanks
LYNXGUY
What is Windows v.8 ???
Maybe you don't have a DirectX installed.
Check out the xformers web site..
-
-
I find them excellent for practicing my de-soldering skills.
-
I got a PIN. Nice feature, nearly the same over at ABBUC. -
-
-
-
Here
http://raster.infos....ve/sdriveen.htm
is some info about Sdrive, but there is another called Sdrive NUXX also.
-
For me it was just short of 2 months by 2 days. Ordered and paid Feb. 25, 2010 and I got the package today..

-
I finally got around to copying my many thousands of floppy disk that been sitting here. And i was able to make an atr image. The problem that i'm having is that i can't load anything. when i run the image, it loads an early version of mydos and i can see the files when i list them. but when i try to load one of the files i get an error 180.
can someone take a look at it this and see whats wrong with it or is it just pilot error. I named the floppy Analog 19 (but dont remember why)
thanks
It is mostly Basic, and text files some ASM, SRC, and data type files. I ran the file called SIEGE.BAS from basic on the emulator, it is a game... autorun.sys crashed and menu did not run.
Post some more when you can ......... Love these old basic atr's.
-
The readme.txt in this atr hints at a newer version might be in the works.
ASCII text viewer for Atari and/or Emulator.
Any hope for the newest version.
-
thank you.. you know, i starting write atari magazine with very small experience with abasic/tbasic..
I am not happy with the fact that I had someone help me, but i am grateful and i promise that future adjustments will I do:)
I am happy to help you, and I will try to help future adjustments. IF you ask.

-
10 REM ATA #1, 19.4.2010 11 REM VERZIA 0.1 12 REM VIKTOR CECH 20 M=480:DIM A$(19),MEM$(M) 60 POKE 82,0 70 ? "}" 80 ? :? "ATA #1 - Disketovy casopis pre 8-bitove pocitace Atari" 90 ? 100 ? "Uvod...........A" 110 ? "Co planujem....B" 120 ? "_______________" 130 ? "Vyber si-->"; 140 TRAP 70:GET K 150 IF K=65:A$="D:UVOD.TXT":ENDIF 160 IF K=66:A$="D:PLANY.TXT":ENDIF 300 CLS :POKE 752,1 310 CLOSE #%2:CLOSE #%3 320 OPEN #%2,4,%0,A$:OPEN #%3,8,%0,"E:" 330 TRAP 340:BGET #%2,ADR(MEM$),M:BPUT #%3,ADR(MEM$),M:GET N:GOTO 330 340 N=DPEEK(40):IF N THEN BPUT #%3,ADR(MEM$),N 350 ? "Press KEY for new file or ESC=Quit" 360 GET N:IF N=27:END :ENDIF 370 CLOSE :RUN
Ahhhhhhhhhhhhh.. This is yours 10 to 160 Mine from 300 to 370
I added to line 20 M=480:DIM MEM$(M)
I added to line 140 TRAP 70:GET K ............this is so anything other than Key 'A' or 'B' will reset menu
I changed your K=#
to do a test for K
CLS
GET K
? K
Longer text files will pause waiting for a key press after the buffer is full M=480------- try out different ##'s for M, but more than 700 will sometimes scroll off top..
-
READ post # 4 again
5030 CLOSE #2:CLOSE #3:OPEN #2,4,0,XXXXX:OPEN #3,8,0,XXXX
FILE$ "E:"
,4, READ ONLY ,8, CREATE FILE
your TRAP should be
5060 TRAP 5070: and the rest of statement on line to :GOTO 5060
delete line 5040 and 5050 DO
5040 CLS
-
Hi w1k,
Larger atr's are more fun for me to work with because of OPTION 'Q' make directory. You can put games in one FOLDER, basic files in another FOLDER, text files TEXT, etc.. I usually name FOLDERS with 4 characters (i.e) XXXX so they are easier to type and don't over flow the [PATH] if getting filename.
The previous posts and the AUTORUN.BAS file is modified from the HSC Bonus Round's "Best of Basic" ATR and another code snippet I got here on AtariAge some time ago.
-
Try this ATR:
This is a MyDos 90k atr. It boots to TB and opens FILE autorun.bas and then opens text files for viewing.
Modify with your title and your text files, I put a few text files on the atr for TB instructions.
This has full MyDOS so you can get back to the dos menu.
Good Luck...

-
2. you can watch the cursor-position by looking at memory-cell 85:
IF PEEK(85)>22 THEN GET E:CLS:REM wait for key, if cursur in the line under line 22, then clear the screen
this is a very easy way, it clears the screen and starts from the top of the screen again.
This is from Post #2 in this thread.
-
what can be first? menu or loading/viewing files?
i have first menu and then..
DIM $A(19)
IF K=64:A$="FILE1.TXT":ENDIF
IF K=65:A$="FILE1.TXT2":ENDIF
OPEN #1,4,0,A$
DO
GET #1,BYTE...
CLOSE #1
ERROR -130
DIM $A(19)
.
. MENU
.
GET K
IF K=64:A$="D:FILE1.TXT":ENDIF
IF K=65:A$="D:FILE1.TXT2":ENDIF
OPEN #1,4,0,A$
DO
GET #1,BYTE...
CLOSE #1
are you using SD 90k ATR or DD with 65535K ATR.
sio2sd
sio2pc
-
-how work GET K?
if i try i, program cycle..
-what about o long txt files?
-and what about more txt files? A,B,C,D options..?
thank you
10 DIM A$(19)
.
. MENU
. A
. B
. C
. D
. E
. GET K
. IF K=65:A$="D:A FILENAME.XXX":ENDIF
. IF K=66:A$="D:B FILENAME.XXX":ENDIF
. IF K=67:A$="D:C FILENAME.XXX":ENDIF
. ETC.....
GET just scans the keyboard key presses and returns the key pressed.
-
IF ERR=136:do what ever you want (i,e..) END RUN GOTO STOP :ENDIF
this should be placed where your TRAP #ERR sends:
200 #ERR
210 IF ERR=136
also ERR is a reserved word with TB...
-
with TB the keyboard is open just use a GET K:PUT K. also OPEN #1 should usually be prefixed with CLOSE #1:OPEN #1 this prevent many of this type of ERR.
-
WHOOT!! All done now seeding...
Now I can start reading some of this.. -
Torrents rock.. Quit bitching, people.. Get with the 90s, if not the 21st century.. Build a "sacrificial" PC to use for "dirty jobs" like wares procurement/extraction/testing/quarantine.. Ghost image the machine in case it gets infected. And then use that machine to get your stuff from bit torrent, etc..
Yeah!!!!!
Hey.. also.. Could someone seed that sucker, please?!?! If you download something good from a torrent, it's common courtesy to leave your torrent client open and SEED IT for at least 12-24 hrs, so that others can benefit like you did.. This is why all the torrent clients default to continue seeding after a download completes. This is what makes torrents work relatively fast/well...
I thought all peers were seeders, and if not where is my Upload bandwith going. As soon as I have 100% I will then be a Seeder. Now at 45.9%, but so are most all the other peers. Look like most of the current peers will be seeder at about the same time.

-
OK redownloaded and now have seeders and peers......


How do I install a BASIC disable switch?
in Atari 8-Bit Computers
Posted
Look through this thread::
http://www.atariage.com/forums/topic/132714-atari-800xl-no-internal-basic/page__p__1600401