# 290 Type-in [ATARI-800] document ## [Video](https://drive.google.com/file/d/1Gkf5Xj45CnYx4sdmoWjD4eETAlpOqdqp/view?usp=sharing) ## Recorded Result [Hangman](https://hackmd.io/62342wFETB2pvwh902w8GQ) ## Outline - Atari-800 emulator - Find a disk (.atr) with program - Load DOS boot image in Atari - Extract and convert .BAS to text file(Optional) - so you know indices of the lines - Load disk file with .BAS file to Atari - View code through LIST command ## Atari-800 emulator [Settings](https://hackmd.io/pHB7zI7vSI-8QOvi8cP_4g) ## Find a disk (.atr) with .BAS program To know if it contains .BAS, use disk explore in Atari ![](https://i.imgur.com/Rzur51R.png) ![](https://i.imgur.com/o3CI5G5.png) ![](https://i.imgur.com/JCAskpB.png) Some .atr don't have .bas file ![](https://i.imgur.com/ed1WflK.png) ## Load DOS boot image in Atari Download [DOS boot image](http://www.atarimania.com/utility-atari-400-800-xl-xe-dos-25_s13808.html) and Load it as Boot image (drag in) ![](https://i.imgur.com/OsHGSos.png) ## Load disk file with .BAS file to Atari Load the .atr file as Mount disk D1 (drag in) ![](https://i.imgur.com/QRfUvas.png) ## View code on Atari #### Load the .BAS file on the mounted disk The disk is loaded on Mounted Disk D1 as in previous step, and through Disk Explorer you can see there's FILE.BAS in the disk ![](https://i.imgur.com/QyYEKmJ.png) so you can use LOAD command to load the .BAS to the memory ![](https://i.imgur.com/BnD6HeK.png) ---- #### Show the loaded code Use LIST command to view the code ![](https://i.imgur.com/JjwYZDr.png) after entering the command ![](https://i.imgur.com/iIMZy97.png) ![](https://i.imgur.com/5Kt9RVr.png) ---- but it might flush out the screen and can't view previous lines. You can only print out few lines each time, by using LIST START_LINE, END_LINE ![](https://i.imgur.com/S5zyVoe.png) you might have to guess the proper start/end line to fit the screen, and use screenshots Or you can also screen record then screenshot