-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAtari FAQ
16268 lines (14371 loc) · 824 KB
/
Atari FAQ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>Atari 8-Bit Computers: Frequently Asked Questions</title>
</head>
<body BGCOLOR="#FFFFFF">
<a href="http://www.cs.uu.nl/"><img border=0 alt="[Comp.Sci.Dept, Utrecht]"
align=right src="/icons/li-dsol.png"></a>
<FONT COLOR="red" SIZE="-1">
Note from archiver<B><at></B>cs.uu.nl:
Since januari 2019, this archive is no longer maintained/updated.
<br>
This page is part of a big <A HREF="/">collection</a>
of Usenet postings, archived here for your convenience.
For matters concerning the <B><I>content</I> of this page</B>,
please contact its author(s); use the
<a href="ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/atari-8-bit/faq"><I>source</I></a>, if all else fails.
For matters concerning the archive as a whole, please refer to the
<A HREF="/na-msc/descr.html">archive description</A>
or contact the archiver.
</FONT>
<BR CLEAR=ALL>
<HR>
<h3>Subject: Atari 8-Bit Computers: Frequently Asked Questions</h3>
This article was archived around: Fri, 19 Jun 2015 00:02:41 -0400 (EDT)
<h4>
All FAQs in Directory: <a href=http://faqs.cs.uu.nl/na-dir/atari-8-bit/idx.html>atari-8-bit</a><br>
All FAQs posted in: <a href=http://faqs.cs.uu.nl/na-bng/comp.sys.atari.8bit.html>comp.sys.atari.8bit</a><br>
Source: <a href="ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/atari-8-bit/faq">Usenet Version</a>
</h4>
<pre>
<hr>Archive-name: atari-8-bit/faq
Posting-Frequency: 59 days
Last-modified: June 11, 2015
<hr>
Welcome to the comp.sys.atari.8bit newsgroup!
Atari 8-Bit Computers
Frequently Asked Questions List
___________ _______________
| ///////// | _____________ | ||||||||||| |
|___________| | | | ||_______|| |
|______/////| |____[---]____| | / _________ \ |
|LLLLLLLLLLL| |LLLLLLLLLLL || | LLLLLLLLLLL L |
|LLLLLLLLLLL| |LLLLLLLLLLL || | LLLLLLLLLLL L |
|__[_____]__| |__[_____]____| |___[_____]_____|
130XE 800XL 800
___________ __---------__
| ///////// | | / _____ \ |
|___________| _____________ | / |_____| \ |
|______/////| |____[---]____| | ___________ |
|LLLLLLLLLLL| |LLLLLLLLLLL || | ========== =|
|LLLLLLLLLLL| |LLLLLLLLLLL || | ========== =|
|__[_____]__| |__[_____]____| |___[_____]___|
65XE 600XL 400
___________ _____________
| ///////// | ___________ | |
|___________| |/// / | | |
|______/////| |// / | /\___________ |=============|
|LLLLLLLLLLL| |/O\ |\/ |LLLLLLLLLLL| | LLLLLLLLLLL |
|LLLLLLLLLLL| |-----------| |LLLLLLLLLLL| | LLLLLLLLLLL |
|__[_____]__| |____O_O_O_O| |__[_____]__| |___[_____]___|
800XE XE 1200XL
Additions/suggestions/comments/corrections are needed! Please send to:
Michael Current, [email protected]
Library Department, University of Wisconsin-La Crosse
Copyright (c) 1992-2015 by Michael D. Current, and others where noted. Feel
free to reproduce this file, in whole or in part, so long as the content of
that portion reproduced is not modified, and so long as credit is given to
this FAQ list or its Maintainer, or the author of that section reproduced
when given.
This document is in a constant state of development and comes with no
guarantees. If you see any problems, I need to hear from you!
The latest version of this document is posted to the following Usenet
newsgroups every 59 days:
comp.sys.atari.8bit, comp.answers, news.answers
Known web locations for the latest version of this document:
<a href=ftp://rtfm.mit.edu/pub/faqs/atari-8-bit/faq>ftp://rtfm.mit.edu/pub/faqs/atari-8-bit/faq</a>
<a href=http://faqs.cs.uu.nl/na-dir/atari-8-bit/faq.html>http://faqs.cs.uu.nl/na-dir/atari-8-bit/faq.html</a>
<a href=http://www-ftp.lip6.fr/pub/doc/faqs/atari-8-bit/faq>http://www-ftp.lip6.fr/pub/doc/faqs/atari-8-bit/faq</a>
You may also request my latest working version at: [email protected]
UPDATES SINCE PREVIOUS POSTING:
2015.06.11 11.1 Jon Ebbs
2015.06.11 9.1 .ROM and especially .CAR descriptions
2015.06.02 7.1.1 11.1 Harry B Stewart's consultancy "Neoteric"; wrote PILOT
2015.06.02 removed 64K program sections (former 8.10 and 8.11), renumber
2015.06.02 1.3 6.3 7.1.1 standardize references to CX801, CX852, CX853
2015.05.31 6.11 Microtek = MPC
2015.05.31 6.11 how 400 48KiB upgrades work; 400/800 intro wording
2015.05.30 1.16 section rename: ports -> connectors
2015.05.30 1.16 added: RAM Module slots 1-3
2015.05.30 1.16 added: ROM Module/Personality Board slot
2015.05.20 1.2 1.3 400/800 CPU Board
2015.05.17 1.2-10 "blackboard" term is 400/800 only, thanks Laurent Delsarte
2015.05.17 3.4 SIO2BT added, thanks Laurent Delsarte
2015.05.14 11.1 Atari France 1984-1986 transition
2015.05.12 throughout: Atari, Corp. vs. Atari Corporation (actual name change)
2015.05.09 7.3.4 SmartDOS, MyDOS tweaks
2015.05.05 8.3e Space Arena M4, Up for Grabs M4, Zeppelin M4, Bounce Ball M4,
Drutt M4+, Rubacka vo kopec
2015.04.28 11.1 David Gjerdrum
2015.04.25 1.12 UMC UM6502I version of SALLY accounted for
2015.04.21 throughout: Atari Corp. -> Atari Corporation
2015.04.21 11.1 Atari merger into JTS fixed
2015.04.14 1.14 11.1 Rich Pasco (FREDDIE)
------------------------------
Subject: 0.1) Table of contents
0.1) Table of contents
Computers
1.1) What is an Atari 8-bit computer?
1.2) What is the Atari 400?
1.3) What is the Atari 800?
1.4) What is the Atari 1200XL?
1.5) What is the Atari 600XL?
1.6) What is the Atari 800XL?
1.7) What is the Atari 65XE?
1.8) What is the Atari 130XE?
1.9) What is the Atari XE game system?
1.10) What is the Atari 800XE?
1.11) What were the Atari 1400XL, 1450XLD, 65XEP, and 65XEM?
1.12) What are SALLY, ANTIC, CTIA/GTIA/FGTIA, POKEY, and FREDDIE?
1.13) What is the internal hardware arrangement of the 8-bit Atari?
1.14) Who designed the Atari 8-bit computers?
1.15) What issues surround NTSC vs. PAL vs. SECAM computer versions?
1.16) What are the pinouts for the various connectors on the Atari?
Televisions, Monitors, Speakers
2.1) What video display devices and speakers can I use with my Atari?
2.2) What were the Atari XC1411 and XM128 monitors?
2.3) What is artifacting?
2.4) What is HDTV display lag?
Mass Storage: Compact Cassette Players/Recorders
3.1.1) What are the Atari 410, 1010, XC11, & XC12 Program Recorders?
3.1.2) What other cassette recorders can I use with my Atari?
3.1.3) What speed upgrades are there for Atari program recorders?
Mass Storage: Floppy Disk Drives
3.2.1) What is the Atari 810 Disk Drive?
3.2.2) What is the Atari 1050 Disk Drive?
3.2.3) What is the Atari XF551 Disk Drive?
3.2.4) What were the Atari 815, XF521, and XF351 Disk Drives?
3.2.5) What other floppy disk drives were designed for my Atari?
3.2.6) What is the Percom configuration block?
3.2.7) How can I use an industry standard floppy disk drive?
Mass Storage: High Capacity Media
3.3.1) What is the Corvus disk system?
3.3.2) How can I use an ST506 interface hard disk (MFM or RLL)?
3.3.3) How can I use a SASI or SCSI interface hard disk?
3.3.4) How can I use an IDE interface hard disk or CompactFlash card?
3.3.5) How can I use a Secure Digital (SD) card with my Atari?
3.3.6) How can I use a USB flash drive with my Atari?
Mass Storage: Another Computer's
3.4) How can my Atari utilize my other computer's storage devices?
Printers
4.1) What are the Atari 820, 822, and 825 Printers?
4.2) What are the Atari 1020, 1025, 1027, and 1029 Printers?
4.3) What are the Atari XMM801 and XDM121 Printers?
4.4) What were the Atari XTM201 and XTC201 Printers?
4.5) What other printers were designed for my Atari?
4.6) How can I use a Centronics or IBM parallel interface printer?
4.7) How can my Atari utilize my other computer's printer?
Modems and other Networking Devices
5.1) What are the Atari 830, 835, 1030, XM301, and SX212 Modems?
5.2) What other modems can I use with my Atari?
5.3) What should I know about using fast modems with the Atari?
5.4) What networking hardware is there for the Atari?
5.5) How can I connect my Atari to a high-speed/Ethernet network?
5.6) How can I my Atari utilize my other computer's modem/network?
Interfaces
6.1.1) What is the Atari 850 Interface Module?
6.1.2) What is the Atari XEP80 Interface Module?
6.1.3) What were the 1060 CP/M Module and 1090 XL Expansion System?
6.1.4) What MIDI interfaces are there for the Atari?
6.1.5) How can I use an ISA device with my my Atari?
6.1.6) How can I use a USB device with my Atari?
Hardware/Peripherals
6.2) What are the power requirements for my Atari components?
6.3) What accessories/kits did Atari make for their 8-bit computers?
6.4) What graphics tablets were produced for the Atari?
6.5) What light pens were produced for the Atari?
6.6) What light guns were produced for the Atari?
6.7) What voice/speech synthesis hardware is there for the Atari?
6.8) What sound digitizers/samplers were produced for the Atari?
6.9) What sound upgrades (stereo or 8-bit PCM) are there?
6.10) What graphics enhancements are there for the Atari?
6.11) What types of memory upgrades are there for the Atari?
Core Software: OS
7.1.1) What is the Atari Operating System?
7.1.2) What other operating systems have been produced for the Atari?
7.1.3) What is the ATASCII character set?
7.1.4) How can my program detect keypresses directly?
7.1.5) How is the Input/Output subsystem of the Atari OS organized?
7.1.6) What is Attract mode?
7.1.7) What is the Atari cassette utilization/filesystem?
7.1.8) What programs run only on the 400/800 (not the XL/XE) and why?
7.1.9) Why do some programs run only on the XL/XE (not the 400/800)?
7.1.10) How can I run older programs using the Atari Translator?
Core Software: BASIC
7.2.1) What is Atari BASIC?
7.2.2) How do I run a program from cassette, or save to cassette?
Core Software: DOS
7.3.1) What is Atari DOS, and what versions did Atari release?
7.3.2) What are RealDOS, SpartaDOS X, and XDOS?
7.3.3) What are MyPicoDOS and Micro-SpartaDOS?
7.3.4) What other 3rd-party DOS versions were released for the Atari?
7.3.5) What should I know about filenames and filename extensions?
Core Software: GUI
7.4) Are there Graphical User Interfaces (GUIs) for the Atari?
Core Software: Modem Handlers
7.5) What should I know about R: and T: modem device handlers?
Software
8.1) What programming languages are available for the Atari?
8.2) What cartridges were released for the Right Slot of the 800?
8.3) What games support 4 or more simultaneous players?
8.4) What programs use a light pen or a light gun?
8.5) What programs are designed for a true trackball controller?
8.6) What programs are designed to work with a mouse?
8.7) What programs use paddle controllers?
8.8) What programs have a CX85 Numerical Keypad mode?
8.9) What programs use: Touch Tablet or KoalaPad/Animation Station?
8.10) What games support online action via modem?
8.11) What programs support Atari computer networking?
Atari media image formats
9.1) What file formats for entire disks/tapes/cartridges are there?
Interoperating With Other Computers
10.1) What noncommercial telecommunications programs are there?
10.2) What programs can I use to host a BBS on the Atari?
10.3) How can I read/write Atari diskettes with my other computer?
10.4) How can I read/write MS-DOS PC disks on my Atari?
10.5) How do I transfer files using a null modem cable?
10.6) How can my other computer utilize my Atari disk drive?
Timeline
11.1) What is the history of Atari's 8-bit computers platform?
To do? list:
- SIO bus - move info from 1.17 to its own section
- Atari Cartridge
- Boot cartridge/disk/cassette formats
- Modifications or replacements for the CX801 Personality Module
- The Integrater by ADS
- MEM/EX by Prairie Physics
- Omnimon! by CDY Consulting (David Young)
- The "Impossible"! by Computer Software Services
- Incognito by Candle (Sebastian Bartkowicz)
- Commercial telecommunications programs
- Remove unwanted sections - pruning
- re-standardize $ vs US$
- rough memory map, including Axlon, Mosaic, 130XE banking
- programs supporting Axlon or Mosaic banked memory
Mosaic list: RAMbrandt
- How can I run CP/M on the Atari?
- Mass Storage: Re-Writable Cartridges
- "ramdisk" standardization
------------------------------
Subject: 1.1) What is an Atari 8-bit computer?
Based in Silicon Valley in the USA, the company known as Atari produced a line
of home computers from 1979 to 1992 often referred to collectively as the
"Atari 8-bits," the "8-bit Ataris," the "400/800/XL/XE series," etc.
The computers included the 400, 800, 1200XL, 600XL, 800XL, 65XE, 130XE, 800XE,
and the XE game system.
Notable home computers that were introduced before the Atari 400/800:
1977: Apple II, Commodore PET, Tandy TRS-80 (Model I)
Notable home computers that were introduced after the Atari 400/800:
1979: Texas Instruments TI-99/4
1980: Commodore VIC-20, Tandy TRS-80 Color Computer, Osborne 1, Sinclair ZX80
1981: Texas Instruments TI-99/4A, IBM PC, Sinclair ZX81, Acorn BBC Micro
1982: Kaypro II, Sinclair ZX Spectrum, Commodore 64
1983: Coleco Adam, MSX
1984: Apple Macintosh, Amstrad CPC
1985: Atari ST, Commodore Amiga
1987: Acorn Archimedes
In marketing their computers to the public, Atari always had to contend with
their company history and reputation as a maker of video games. While the
8-bit Atari computers in their heyday were technically quite comparable if not
superior in the worlds of home and business personal computing, they also live
up to the name "Atari" with a huge library of video games which were often
outstanding for their time.
The 8-bit Atari computers do not use the same cartridges or floppy disks as
any other Atari platforms, such as the 2600 Video Computer System (VCS), the
5200 SuperSystem, the 7800 ProSystem, or the ST/TT/Falcon computers. All of
these but the 5200, however, do share (essentially) the same joystick/
controller hardware port.
While the 5200 controller ports are different, the 5200 hardware platform is
very closely related the 8-bit Atari computers, including use of the same
custom chipset (SALLY/ANTIC/GTIA/POKEY). Differences include a fixed 16KiB of
RAM, fixed 32KiB ROM cartridge size, a physically different cartridge port,
and a much smaller 2KiB operating system.
Here are some of the hardware performance specifications of the 8-bit Atari
computers:
6502 MPU:
MOS Technology MCS6502A or equivalent (most NTSC 400/800 machines)
Atari SALLY (late NTSC 400/800, all PAL 400/800, and all XL/XE)
CPU CLOCK RATE:
1.7897725MHz (NTSC machines)
1.7734470MHz (PAL/SECAM machines)
FRAME REFRESH RATE:
59.94Hz (NTSC machines)
49.86Hz (PAL/SECAM machines)
MACHINE CYCLES per FRAME:
29859 (NTSC machines) (1.7897725MHz / 59.94Hz)
35568 (PAL/SECAM machines) (1.7734470MHz / 49.86Hz)
SCAN LINES per FRAME
262 (NTSC machines)
312 (PAL/SECAM machines)
MACHINE CYCLES per SCAN LINE
114 (NTSC machines: 29859 cycles/frame / 262 lines/frame;
PAL/SECAM machines: 35568 cycles/frame / 312 lines/frame)
COLOR CLOCKS per MACHINE CYCLE
2
COLOR CLOCKS per SCAN LINE
228 (2 color clocks/machine cycle * 114 machine cycles/scan line)
MAXIMUM SCAN LINE WIDTH = "WIDE PLAYFIELD"
176 color clocks
MAXIMUM RESOLUTION = GRAPHICS PIXEL
0.5 color clock
MAXIMUM HORIZONTAL FRAME RESOLUTION
352 pixels (176 color clocks / 0.5 color clock)
MAXIMUM VERTICAL FRAME RESOLUTION
240 pixels (240 scan lines per frame)
GRAPHICS MODES:
ANTIC GTIA AtariOS Display Resolution Colors
Mode # Mode # Mode # Type (full screen) (Color Registers)
----------------------------------------------------------------------------
(See a separate section in this FAQ list for a discussion of the "missing"
ANTIC Modes 0 and 1.)
2 0 Char 40 x 24 3 *
3 - Char 40 x 19 3 *
4 12 ++ Char 40 x 24 5
5 13 ++ Char 40 x 12 5
6 1 Char 20 x 24 5
7 2 Char 20 x 12 5
8 3 Map 40 x 24 4
9 4 Map 80 x 48 2
A 5 Map 80 x 48 4
B 6 Map 160 x 96 2
C 14 ++ Map 160 x 192 2
D 7 Map 160 x 96 4
E 15 ++ Map 160 x 192 4
F 8 Map 320 x 192 3 *
F 1 + 9 Map 80 x 192 16 or 8 **
F 2 + 10 Map 80 x 192 9
F 3 + 11 Map 80 x 192 16 ***
+ GTIA Modes require GTIA chip or FGTIA chip
(With CTIA these modes are considered valid by the OS but do not work.)
++ Supported by the XL OS (not supported by the 400/800 OS)
* 2 of the 3 available color registers share the same color/hue in this mode
** GTIA: 16 luminances of one color/hue
FGTIA: 8 luminances of one color/hue
*** 16 colors/hues all sharing the same luminance
GRAPHICS INDIRECTION (COLOR REGISTERS AND CHARACTER SETS):
Nine Color Registers are provided:
- Background (used in all graphics modes)
- Playfield 0-3 (at least one used in all graphics modes except GTIA 1&3)
- Player-Missile 0-3 (used in GTIA Mode 2; Player-Missiles discussed below)
Each color register holds both a color/hue setting and a luminance/brightness
setting. In most graphics modes, each of the available color registers may
hold any one of 16 colors/hues combined with any one of 8 luminance/brightness
settings, for a total palette of 128 possible colors.
In GTIA Mode 1 only, with the GTIA chip only, the 16 available colors/hues can
each be combined with 16 different luminance/brightness settings, for a total
palette of 256 possible colors.
Character sets of 128 8x8 characters, each with a normal and an inverse
video incarnation, are totally redefinable.
PLAYER-MISSILE GRAPHICS:
The Atari term for "sprites" where a sprite is a graphical video display
object handled independendly from the memory bitmap of the video display.
Four 8-bit wide, 120 or 240 byte high single color Players, and four
2-bit wide, 120 or 240 byte high single color Missiles are available.
A mode to combine the 4 Missiles into a 5th 8-bit wide Player is also
available, as is a mode to OR colors or blacken out colors when Players
overlap (good for making three colors out of two Players!) Players
and Missiles have adjustable priority and collision detection.
DISPLAY LIST:
Screen modes can be mixed (by lines) down the screen using the Display
List - a program which is executed by the ANTIC graphics chip every
screen refresh.
DISPLAY LIST INTERRUPTS (DLIs):
Other screen attributes (color, player/missile horizontal position,
screen width, player/missile/playfield priority, etc.) can be adjusted
at any point down the screen via DLIs.
SCROLLING:
Fine scrolling (both vertical and horizontal) can be enabled on any
line on the screen.
SOUND:
Sound output is monaural/monophonic, or single channel (except for the
400/800 where the Console Speaker outputs to a separate, internal
speaker).
Up to 5 separate simultaneous voices can be produced, where the four main
voices can be configured in one of the following three ways:
- 4 voices, each with one of 256 unique frequencies/pitches
- 2 voices, each with one of 65,536 unique frequencies/pitches
- 1 voice with one of 65,536 frequencies/pitches and 2 voices with one of
256 frequencies/pitches each
Each of the four main voices may be produced with one of 8 available
"noise" settings/polynomial-counter combinations, commonly called
"distortion" settings. (There are actually only 6 distinct combinations
of 3 poly-counters offered, but one of the poly-counters has 2 available
settings itself, resulting in 2 additional noise settings for the total of
8 available.)
Each of the four main voices may be produced at one of 16 volumes.
Also for each of the four main voices, direct control of the position of
the speaker cone, known today as pulse-code modulation or PCM, is
available as well, at a bit depth of 4 bits, for a volume resolution of 16
possible values (4-bit PCM). This is known as "Volume Control only" mode
on the Atari.
The fifth available voice is known as the Console Speaker. This voice was
intended only for system keyclick and buzzer, but it may also be
programmed as 1-bit PCM.
VERTICAL BLANK INTERRUPTS (VBIs):
A software routine may be designed to execute as a VBI. There are two
varieties of VBI: Immediate and Deferred. An Immediate VBI completes
execution within the vertical blank time, which is the time allotted for a
CRT display to shut the electron beam off at the lower-right of the
display and reposition it back on the top-left of the display to commence
drawing of the next frame. A Deferred VBI routine completes execution
between the initiation of one vertical blank and the next.
Atari 8-bit computers were supplied with the proprietary Atari Operating
System contained in Read Only Memory (ROM) as an integral feature of the
computer. The Atari OS is described elsewhere in this FAQ List.
------------------------------
Subject: 1.2) What is the Atari 400?
Introduced in January 1979 alongside the Atari 800 and shipped that fall, the
Atari 400 was the reduced feature set version of the new Atari personal
computer system.
The 400 is the only 8-bit Atari with a membrane keyboard rather than a full-
stroke keyboard, and is one of the few 8-bit Atari computers lacking a
composite monitor port. Controller Jacks #1-3 on the 400 are the only ones on
any 8-bit Atari that do not support a light pen / light gun. The 400 was
originally released with just 8KiB RAM, but most were sold with 16KiB RAM. As
of June 1983 Atari released the 48K RAM Expansion Kit for the 400, installed
through Atari service centers or offered as a kit through the Atari Program
Exchange (APX).
Any internal plug-in RAM board for the 400 can also be used in the front RAM
slot of the 800.
Features unique to the 400/800 models relative to other Atari computers:
- Television (TV) connecting cable, not designed to be removable, emerges
directly from center of rear of computer case
- Four controller (joystick) ports
- Internal speaker for keyclicks and system buzzer
- Memo Pad / Blackboard mode
- +12 volt supply on pin 12 of the SIO port
- Internal plug-in 400/800 CPU Board (28/56 pin edge connector)
System initialization types supported:
- Memo Pad: Turn on computer with no cartridge inserted and no powered disk
drive #1.
- Cartridge: Turn on computer with cartridge inserted.
- Cassette boot: (boot cassette may or may not require cartridge inserted)
1. Hold down [START] while turning on the computer. (system buzzer sounds)
2. Press [PLAY] on the program recorder with boot cassette inserted.
3. Press [RETURN] on the computer.
- Disk boot: (boot disk may or may not require cartridge inserted)
Turn on computer with boot disk inserted in powered disk drive #1.
Versions of the Atari 400:
o "DOM" Domestic version for NTSC television
- 1979-1981 systems shipped with:
- 8KiB of RAM
- Atari BASIC Programming Language cartridge CXL4002
- Atari BASIC (Wiley Self-Teaching Guide) book C014385
- Atari 400 Operator's Manual C014768 (CO14768)
- 1981-1983 systems shipped with:
- 16KiB of RAM
- The Basic Computer Owner's Guide C017711
- Most units: 6502 MPU (MOS Technology MCS6502A or equivalent), C014377
Late units: 6502 MPU (Atari SALLY), C014806
- ANTIC NTSC version, C012296
- Early units: CTIA, C012295
Most units: GTIA NTSC version, C014805
- 10KiB Operating System ROM
- 400/800 OS, C012399 Floating Point Package (FPP) + C012499 + C014599
- Early units: 400/800 OS Rev.A/NTSC
- Most units: 400/800 OS Rev.B/NTSC
- No Monitor port
- Switch (unlabeled) on back of computer selects TV output RF channel:
2 or 3
- TV Switch Box supplied with computer
o "PAL" and "UK" versions for PAL B or PAL I television, respectively
- Shipped 1981-1983
- 16KiB RAM
- 6502 MPU (Atari SALLY), C014806
- ANTIC PAL version, C014887
- GTIA PAL version, C014889
- 10KiB Operating System ROM
- 400/800 OS Rev.A/PAL, C012399 (FPP) + C015199 + C015299
- No Monitor port
- Switch (unlabeled) on back of computer has no effect
- TV output: RF channel 4 ("PAL" version) or 36 ("UK" version)
- The Atari 400 Computer Owner's Guide C060200 (CO60200)
Rare variation of the 400:
o At least some of the few Atari 400 units (PAL) sold by Atari in France
have been reported to include a built-in SCART/Peritel cable. PICTURES???
<a href=http://www.atariage.com/forums/index.php>http://www.atariage.com/forums/index.php</a>?showtopic=62346&st=25
Additional Manuals:
- Atari 400/800 Home Computer Field Service Manual FD100001
- June 1982
- Rev. 02 May 1983
- Atari 400/800 PAL-UK field service manual FD100002
Power: Used with an external 9 volt AC transformer power supply rated for at
least 19 watts: Atari CA014748 or equivalent.
Atari marketing used the trademark, The Basic Computer, as an alternative name
for the 400 from 1981-1982.
The 400 was made in the USA (early production) and Hong Kong (later
production).
------------------------------
Subject: 1.3) What is the Atari 800?
Introduced in January 1979 alongside the Atari 400 and shipped that fall, the
Atari 800 was the full feature set version of the new Atari personal computer
system. The 800 is the only 8-bit Atari with a Right Cartridge slot, in
addition to the Left Cartridge slot as present on all 8-bit Ataris. The 800
was originally released with just 8KiB RAM, many were sold with 16KiB, and
later on 48KiB was standard.
The 800 is the only 8-bit Atari where the Operating System is contained in a
plug-in Personality Module (Atari CX801 10K ROM or compatible), and where RAM
is contained in one, two, or three plug-in Memory Modules (Atari CX852 8K RAM,
Atari CX853 16K RAM, or compatibles). 800 RAM totals of 8KiB, 16KiB, 24KiB,
32KiB, 40KiB, or 48KiB were supported by Atari.
Features unique to the 400/800 models relative to other Atari computers:
- Television (TV) connecting cable, not designed to be removable, emerges
directly from center of rear of computer case
- Four controller (joystick) ports
- Internal speaker for keyclicks and system buzzer
- Memo Pad / Blackboard mode
- +12 volt supply on pin 12 of the SIO port
- Internal plug-in 400/800 CPU Board (28/56 pin edge connector)
System initialization types supported:
- Memo Pad: Turn on computer with no cartridge(s) inserted and no powered
disk drive #1.
- Cartridge: Turn on computer with cartridge(s) inserted.
- Cassette boot: (boot cassette may or may not require cartridge(s) inserted)
1. Hold down [START] while turning on the computer. (system buzzer sounds)
2. Press [PLAY] on the program recorder with boot cassette inserted.
3. Press [RETURN] on the computer.
- Disk boot: (boot disk may or may not require cartridge(s) inserted)
Turn on computer with boot disk inserted in powered disk drive #1.
Versions of the Atari 800:
o "DOM" Domestic version for NTSC television
- 1979-1980 systems shipped with:
- 8KiB of RAM as one CX852 Memory Module
- 410 Program Recorder
- Educational System Master Cartridge CXL4001
- Atari BASIC Programming Language cartridge CXL4002
- Atari BASIC (Wiley Self-Teaching Guide) book C014385
- Atari 800 Operator's Manual C014769 (CO14769)
- 1980-1982 systems shipped with:
- 16KiB of RAM as one CX853 Memory Module
- Atari BASIC Programming Language cartridge CXL4002
- Atari BASIC (Wiley Self-Teaching Guide) book C014385
- BASIC Reference Manual C015307
- The Atari 800 Home Computer Owner's Guide C060057 (CO60057) REV.1
(17 pages)
- 1982-1983 systems shipped with:
- 48KiB of RAM as 3 CX853 Memory Modules (slot compartment screwed
shut)
- The Atari 800 Home Computer Owner's Guide C060057 (CO60057) REV.A
(13 pages)
- Most units: 6502 MPU (MOS Technology MCS6502A or equivalent), C014377
Late units: 6502 MPU (Atari SALLY), C014806
- ANTIC NTSC version, C012296
- Early units: CTIA, C012295
Most units: GTIA NTSC version, C014805
- CX801 10K ROM Personality Module (NTSC version)
- 400/800 OS, C012399 Floating Point Package (FPP) + C012499 + C014599
- Early units: 400/800 OS Rev.A/NTSC
- Most units: 400/800 OS Rev.B/NTSC
- Monitor port is Atari 5-pin
- Channel switch on side of computer selects TV output RF channel: 2 or 3
- TV Switch Box supplied with computer
o "PAL" and "UK" versions for PAL B or PAL I television, respectively
- Shipped 1981-1983
- 16KiB RAM (earlier units) or 48KiB RAM (later units)
- 6502 MPU (Atari SALLY), C014806
- ANTIC PAL version, C014887
- GTIA PAL version, C014889
- CX801-P 10K ROM Personality Module (PAL version)
- 400/800 OS Rev.A/PAL, C012399 (FPP) + C015199 + C015299
- Monitor port is Atari 5-pin
- Channel switch on side of computer has no effect
- TV output: RF channel 4 ("PAL" version) or 36 ("UK" version)
- The Atari 800 Home Computer Owner's Guide C060497 (CO60497)
o "PAL Peritel" or "800PTL"
- Designed for France in 1983. RARE.
- Designed in 16KiB or 48KiB versions
- Same as PAL 800, with the addition of Atari Peritel Adaptor board
CA061034, with DIN-8 socket (female) monitor port:
- Unverified pin orientation ("270-degree") and pinout:
<a href=http://www.system-cfg.com/detailcollection.php>http://www.system-cfg.com/detailcollection.php</a>?ident=29 or
<a href=http://preview.tinyurl.com/olt2e3p>http://preview.tinyurl.com/olt2e3p</a>
- Discussions:
<a href=http://preview.tinyurl.com/p6myda9>http://preview.tinyurl.com/p6myda9</a>
<a href=http://atariage.com/forums/topic/191254-peritel-boards/>http://atariage.com/forums/topic/191254-peritel-boards/</a>
- Pictures: <a href=http://msx.fab.free.fr/mpc2/atari/patari80.htm>http://msx.fab.free.fr/mpc2/atari/patari80.htm</a>
4 different types of 800 keyboards were nicely documented by ACML here:
<a href=http://www.atariage.com/forums/index.php>http://www.atariage.com/forums/index.php</a>?showtopic=105170
Additional Manuals:
- Atari 400/800 Home Computer Field Service Manual FD100001
- June 1982
- Rev. 02 May 1983
- Atari 400/800 PAL-UK field service manual FD100002
Power: Used with an external 9 volt AC transformer power supply rated for at
least 19 watts: Atari CA014748 or equivalent.
The 800 was made in the USA.
------------------------------
Subject: 1.4) What is the Atari 1200XL?
Introduced in December 1982 and shipped in March 1983, the Atari 1200XL was
intended to be the first in a new generation of computers to replace the Atari
400/800 while maintaining compatibility with the earlier models.
Innovations relative to the 400/800 include a full 64KiB of RAM and a
significantly revised XL Operating System (ROM expanded from 10KiB to 14KiB).
The 1200XL is the only 8-bit Atari computer to feature two LED indicator
lights (L1, L2). Normally they are both <OFF>. L1 <ON> means the keyboard is
disabled. L2 <ON> means the new International Character Set is selected.
Keyboard enhancements introduced with the 1200XL include the new [HELP] key as
well as four programmable functions keys ([F1], [F2], [F3], [F4]). Console
Speaker sounds (keyclicks and system beeps) output through the built-in
speaker on the 400/800 are heard from the television or monitor speaker on the
1200XL. The toggle action of the [CAPS] key was altered compared to the
400/800. The key auto-repeat rate is user-alterable. The [RESET] key is
directly wired to the SALLY 6502 reset line.
1200XL Function key effects, redefinable:
[F1] Cursor up [SHIFT]+[F1] Cursor to upper-left corner (home)
[F2] Cursor down [SHIFT]+[F2] Cursor to lower-left corner
[F3] Cursor left [SHIFT]+[F3] Cursor to start of physical line
[F4] Cursor right [SHIFT]+[F4] Cursor to end of physical line
1200XL Function key effects, non-redefinable:
[CONTROL]+[F1] Keyboard enable/disable (console keys unaffected)
[CONTROL]+[F2] Screen DMA (ANTIC) enable/disable
[CONTROL]+[F3] Key click sound enable/disable
[CONTROL]+[F4] Domestic/International character set toggle
Additional 1200XL Operating System enhancements compared to the 400/800 OS:
- Text screen fine scrolling is available
- The Resident Diskette Handler can read/write disk sectors having variable
length from 1 to 65536 bytes.
Default = 128 bytes (matching the 400/800 static value)
- The Resident Diskette Handler can write a sector to the disk without a
read-verify operation always following it.
- Universal OS for both NTSC and PAL systems (including independent values
for cassette timings and for keyboard auto-repeat functions)
A few features from the 400/800 are lacking in the 1200XL. Most prominently,
the 1200XL has only 2 controller ports, and no Memo Pad / Blackboard mode.
With the 1200XL Atari made an apparent decision to preclude peripherals from
drawing their power from the computer via the SIO bus:
- The 1200XL lacks +12V on SIO pin 12, as was available on the 400/800.
- On the 1200XL the +5V/Ready line (pin 10) on the SIO port supplies enough
current for the Ready ("Computer On") function but not enough current for
peripherals designed to use the line as their power source.
("FIX": Replace 100 Ohm resistor R63 with a 0 Ohm to 1 Ohm resistor, or a
jumper wire.)
The labels on some several of the 1200XL keyboard keys differ slightly from
those of the 400/800: 400/800 1200XL
[CTRL] --> [CONTROL]
[SYSTEM RESET] --> [RESET]
[CAPS LOWR] --> [CAPS]
[DELETE BACK S] --> [DELETE BACK SPACE]
"Atari logo" key --> "Inverse video" key
System initialization types supported:
- "ATARI" rainbow logo/graphics demo screen: Turn on computer with no
cartridge inserted and no powered disk drive #1.
- Press [HELP] from the "ATARI" logo screen to access Self Test program.
- Cartridge: Turn on computer with cartridge inserted.
- Cassette boot: (boot cassette may or may not require cartridge inserted)
1. Hold down [START] while turning on the computer. (system buzzer sounds)
2. Press [PLAY] on the program recorder with boot cassette inserted.
3. Press [RETURN] on the computer.
- Disk boot: (boot disk may or may not require cartridge inserted)
Turn on computer with boot disk inserted in powered disk drive #1.
Box: "A Step Into the Future" or "The Next Logical Step"
Versions of the Atari 1200XL:
o "DOM" Domestic version for NTSC television
- 6502 MPU (Atari SALLY), C014806
- ANTIC NTSC version, C012296
- GTIA NTSC version, C014805
- 14KiB Operating System ROM, C060616 + C060617
- Floating Point Package (FPP) included, identical to the 400/800 FPP
- Most units: XL OS Rev.A
- Rare units: XL OS Rev.B
- Monitor port is Atari 5-pin
- Lacks the chrominance video signal on pin 5
- Switch Box jack for RF output for TV
- Channel switch on back of computer selects TV output RF channel: 2 or 3
- TV Switch Box and TV connecting cable both supplied with computer
Manuals:
- The Atari 1200XL Home Computer Owner's Guide C061418
- Atari 1200XL Home Computer Field Service Manual FD100217
Power: Used with an external 9 volt AC transformer power supply, input power
31 VA; shipped with Atari CA017964.
The 1200XL was made in the USA from January 1983 to May 1983, and in Taiwan
from April 1983 to July 1983.
By analyzing 1200XL serial numbers, Karl Heller estimates that fewer than
120,000 units total were produced, and possibly fewer than 100,000. See the
"1200XL Owners List" thread on AtariAge:
<a href=http://atariage.com/forums/topic/107234-1200xl-owners-club-serial-tracker/>http://atariage.com/forums/topic/107234-1200xl-owners-club-serial-tracker/</a>
Scott Stilphen mentioned this 1200XL easter egg on 10 Feb 2006:
On 1200XLs, if you select 'all tests', when it gets to the keyboard test
it'll type out the programmer's name.
1200XL visual tour: <a href=http://www.atari800xl.eu/public/1200xl/>http://www.atari800xl.eu/public/1200xl/</a>
------------------------------
Subject: 1.5) What is the Atari 600XL?
Introduced in June 1983 alongside the 800XL, 1400XL (never shipped), and
1450XLD (never shipped), and shipped that fall, the Atari 600XL was the
low-end machine in the new range of computers that would replace the Atari
400/800/1200XL while maintaining compatibility with the earlier models.
The 600XL/800XL include most of the features of the 1200XL, minus the 4
Function keys, the 2 LED lights, and the "ATARI" logo screen. In addition,
the 600XL/800XL offer the Parallel Bus Interface (PBI), providing fast
parallel access to the heart of the computer.
Available current on the +5V/Ready line (pin 10) on the SIO port of the
600XL/800XL matches that on the 400/800, restoring compatibility with SIO
peripherals designed to draw power from that line which would not work on the
1200XL.
The 600XL contains 16KiB RAM, and has the Atari XL OS and Atari BASIC on ROM.
The Atari 1064 Memory Module expands the 600XL from 16KiB to 64KiB RAM.
System initialization types supported:
- Atari BASIC: Turn on computer with no cartridge inserted and no powered
disk drive #1.
- Self Test program: Hold down [OPTION] while turning on the computer with no
cartridge inserted and no powered disk drive #1.
- Cartridge: Turn on computer with cartridge inserted. (disables BASIC)
- Cassette boot: (boot cassette may or may not require BASIC or cartridge)
1. - With BASIC or with cartridge (cartridge disables BASIC):
Hold down [START] while turning on the computer.
- With no cartridge and without BASIC:
Hold down both [START] and [OPTION] while turning on the computer.
(system buzzer sounds)
2. Press [PLAY] on the program recorder with boot cassette inserted.
3. Press [RETURN] on the computer.
- Disk boot: (boot disk may or may not require BASIC or cartridge inserted)
- With BASIC or with cartridge (cartridge disables BASIC):
Turn on computer with boot disk inserted in powered disk drive #1.
- With no cartridge and without BASIC:
Hold down [OPTION] while turning on computer with boot disk inserted
in powered disk drive #1.
Box: "Feature For Feature, Your Best Value"
Versions of the Atari 600XL:
o "DOM" Domestic version for NTSC television
- 6502 MPU (Atari SALLY), C014806
- ANTIC 'E' NTSC version, C021697
- GTIA NTSC version, C014805
- 14KiB Operating System ROM: XL OS Rev.1, C062024
- Atari BASIC Rev. B (8KiB ROM), C060302
- No Monitor port
- Switch Box jack for RF output for TV
- Channel switch on back of computer selects TV output RF channel: 2 or 3
- TV Switch Box and TV connecting cable both supplied with computer
o "PAL" and "UK" versions for PAL B or PAL I television, respectively
- 6502 MPU (Atari SALLY), C014806
- ANTIC 'B' PAL version, C021698
- GTIA PAL version, C014889
- 14KiB Operating System ROM: XL OS Rev.1, C062024
- Atari BASIC Rev. B (8KiB ROM), C060302
- Monitor port is Atari 5-pin
- Lacks the luminance video signal on pin 1
- Lacks the chrominance video signal on pin 5
- T.V. jack for RF output for TV
- No TV RF Channel select switch
- TV output: RF channel 4 ("PAL" version) or 36 ("UK" version)
- RF Cable for TV connection supplied with computer
Rare variations of the 600XL:
o Some late-model 600XLs were sold with 64KiB RAM. These may have only
appeared in Canada. The box had a round gold foil sticker reading:
"64k Memory -- Now with a full 64k of memory built-in."
5 different types of 600XL/800XL keyboards were nicely documented by Beetle
here: <a href=http://atariage.com/forums/topic/105170-600800xl-keyboard-variants/>http://atariage.com/forums/topic/105170-600800xl-keyboard-variants/</a>
Manuals:
- The Atari 600XL Home Computer Owner's Guide C061530 (21 pages)
- Atari Computer 600XL C061946 (international; 61 pages)
- Atari Computer 600XL and Atari Computer 800XL Connection Instructions for
PAL TV Systems C061947 (international)
- Atari Computer 600XL Connection Instructions for NTSC TV Systems C062228
(international)
- Atari 600XL Computer Field Service Manual FD100610
The 600XL was made in Hong Kong and Japan.
The Atari 600XL was utilized by Exidy as an embedded system in their
Max-A-Flex coin-operated arcade conversion system (configurable to play:
Astro Chase, Boulder Dash, Bristles, or Flip and Flop).
(See MyAtari Magazine, January 2003.)
------------------------------
Subject: 1.6) What is the Atari 800XL?
Introduced in June 1983 alongside the 600XL, 1400XL (never shipped), and
1450XLD (never shipped), and shipped that fall, the Atari 800XL was one of the
new range of computers that would replace the Atari 400/800/1200XL while
maintaining compatibility with the earlier models.
The 600XL/800XL include most of the features of the 1200XL, minus the 4
Function keys, the 2 LED lights, and the "ATARI" logo screen. But both the
600XL and 800XL have the Atari BASIC language built-in. In addition, these
two systems offer the Parallel Bus Interface (PBI), providing fast parallel
access to the heart of the computer.
Available current on the +5V/Ready line (pin 10) on the SIO port of the
600XL/800XL matches that on the 400/800, restoring compatibility with SIO
peripherals designed to draw power from that line which would not work on the
1200XL.
The 800XL contains 64KiB RAM, and has the Atari XL OS and Atari BASIC on ROM.
System initialization types supported:
- Atari BASIC: Turn on computer with no cartridge inserted and no powered
disk drive #1.
- Self Test program: Hold down [OPTION] while turning on the computer with no
cartridge inserted and no powered disk drive #1.
- Cartridge: Turn on computer with cartridge inserted. (disables BASIC)
- Cassette boot: (boot cassette may or may not require BASIC or cartridge)
1. - With BASIC or with cartridge (cartridge disables BASIC):
Hold down [START] while turning on the computer.
- With no cartridge and without BASIC:
Hold down both [START] and [OPTION] while turning on the computer.
(system buzzer sounds)
2. Press [PLAY] on the program recorder with boot cassette inserted.
3. Press [RETURN] on the computer.
- Disk boot: (boot disk may or may not require BASIC or cartridge inserted)
- With BASIC or with cartridge (cartridge disables BASIC):
Turn on computer with boot disk inserted in powered disk drive #1.
- With no cartridge and without BASIC:
Hold down [OPTION] while turning on computer with boot disk inserted
in powered disk drive #1.
Box: "More Memory Means More Power"
Versions of the Atari 800XL:
o "DOM" Domestic version for NTSC television
- Produced by Atari, Inc.
- 6502 MPU (Atari SALLY), C014806
- Earlier units: ANTIC NTSC version, C012296
Later units: ANTIC 'E' NTSC version, C021697
- GTIA NTSC version, C014805
- Monitor port is Atari 5-pin
- Lacks the chrominance video signal on pin 5
- Switch Box jack for RF output for TV
- Channel switch on back of computer selects TV output RF channel: 2 or 3
- TV Switch Box and TV connecting cable both supplied with computer
- 14KiB Operating System ROM
- Early units: XL OS Rev.1, C062024
- Most units: XL OS Rev.2, C061598
- Atari BASIC (8KiB ROM)
- Most units: Atari BASIC Rev. B, C060302
- Late units: Atari BASIC Rev. C, C024947
- Made in Hong Kong and Taiwan
- Some internal pics:
<a href=http://atarinside.dyndns.org/gallery2/main.php>http://atarinside.dyndns.org/gallery2/main.php</a>?g2_itemId=74
o "PAL" and "UK" versions for PAL B or PAL I television, respectively
- Produced by Atari, Inc. and Atari, Corp.
- Later units: "800XLF" motherboard
- 6502 MPU (Atari SALLY), C014806
- Early units: ANTIC PAL version, C014887
Most units: ANTIC 'B' PAL version, C021698
- GTIA PAL version, C014889
- Later units: FREDDIE memory management chip introduced
- Monitor port is Atari 5-pin
- Earlier units: Lacks the chrominance video signal on pin 5
- Later units: Pin 5 is connected as on the 800
- Switch Box jack for RF output for TV
- No TV RF Channel select switch
- TV output: RF channel 4 ("PAL" version) or 36 ("UK" version)
- RF Cable for TV connection supplied with computer
- 14KiB Operating System ROM
- Early units: XL OS Rev.1, C062024
- Most units: XL OS Rev.2, C061598
- Atari BASIC (8KiB ROM)
- Most units: Atari BASIC Rev. B, C060302
- Late units: Atari BASIC Rev. C, C024947
- Visual tour: <a href=http://www.atari800xl.eu/public/800xlpal/>http://www.atari800xl.eu/public/800xlpal/</a>
- More internal pics:
<a href=http://atarinside.dyndns.org/gallery2/main.php>http://atarinside.dyndns.org/gallery2/main.php</a>?g2_itemId=73
- Made in Hong Kong (earlier units) and Taiwan (earlier and later units)
o SECAM version for SECAM television (France)
- Produced by Atari, Corp.
- "SECAM ROSE" motherboard
- 6502 MPU (Atari SALLY), C014806
- ANTIC 'B' PAL version, C021698
- FGTIA, C020120
- FREDDIE memory management chip