# 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



Some .atr don't have .bas file

## 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)

## Load disk file with .BAS file to Atari
Load the .atr file as Mount disk D1 (drag in)

## 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

so you can use LOAD command to load the .BAS to the memory

----
#### Show the loaded code
Use LIST command to view the code

after entering the command


----
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

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