GEM error codes: Difference between revisions

From Atari Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
{| class="wikitable"
<pre>
 
  +
! Error code !! Description
Error description GEM Error code
 
  +
|-
=========================================
 
OK (no error)....................0
+
| 0 || OK (no error
  +
|-
Fundamental error................1
 
  +
| 1 || Fundamental error
Drive not ready..................2
 
  +
|-
Unknown command..................3
 
  +
| 2 || Drive not ready
CRC error........................4
 
  +
|-
Bad request......................5
 
  +
| 3 || Unknown command
Seek error.......................6
 
  +
|-
Unknown media....................7
 
  +
| 4 || CRC error
Sector not found.................8
 
  +
|-
No paper.........................9
 
  +
| 5 || Bad request
Write fault.....................10
 
  +
|-
Read fault......................11
 
  +
| 6 || Seek error
General error...................12
 
  +
|-
Write protect...................13
 
  +
| 7 || Unknown media
Media change....................14
 
  +
|-
Unknown device..................15
 
  +
| 8 || Sector not found
Bad sectors on format...........16
 
  +
|-
Insert other disk...............17
 
  +
| 9 || No paper
Invalid function number.........32
 
  +
|-
File not found..................33
 
  +
| 10 || Write fault
Path not found..................34
 
  +
|-
No handles left.................35
 
  +
| 11 || Read fault
Access denied...................36
 
  +
|-
Invalid handle..................37
 
  +
| 12 || General error
Insufficient memory.............39
 
  +
|-
Invalid memory block address....40
 
  +
| 13 || Write protect
Invalid drive specified.........46
 
  +
|-
No more files...................49
 
  +
| 14 || Media change
Range error.....................64
 
  +
|-
Internal error..................65
 
  +
| 15 || Unknown device
Invalid program load format.....66
 
  +
|-
</pre>
 
  +
| 16 || Bad sectors on format
  +
|-
  +
| 17 || Insert other disk
  +
|-
  +
| 32 || Invalid function number
  +
|-
  +
| 33 || File not found
  +
|-
  +
| 34 || Path not found
  +
|-
  +
| 35 || No [[File handle|handles]] left
  +
|-
  +
| 36 || Access denied
  +
|-
  +
| 37 || Invalid handle
  +
|-
  +
| 39 || Insufficient [[memory]]
  +
|-
  +
| 40 || Invalid [[memory block address]]
  +
|-
  +
| 46 || Invalid drive specified
  +
|-
  +
| 49 || No more files
  +
|-
  +
| 64 || Range error
  +
|-
  +
| 65 || Internal error
  +
|-
  +
| 66 || Invalid program load format
  +
|}
  +
<br/><br/>
 
Back to [[Programming]]
 
Back to [[Programming]]
  +
Back to [[TOS Guides]]
  +
  +
[[Category:Programming]][[Category:TOS Guides]]

Latest revision as of 04:48, 19 February 2012

Error code Description
0 OK (no error
1 Fundamental error
2 Drive not ready
3 Unknown command
4 CRC error
5 Bad request
6 Seek error
7 Unknown media
8 Sector not found
9 No paper
10 Write fault
11 Read fault
12 General error
13 Write protect
14 Media change
15 Unknown device
16 Bad sectors on format
17 Insert other disk
32 Invalid function number
33 File not found
34 Path not found
35 No handles left
36 Access denied
37 Invalid handle
39 Insufficient memory
40 Invalid memory block address
46 Invalid drive specified
49 No more files
64 Range error
65 Internal error
66 Invalid program load format



Back to Programming Back to TOS Guides