Rev 126 | Details | Compare with Previous | Last modification | View Log
Rev | Author | Line No. | Line |
---|---|---|---|
125 | lvd | 1 | /* |
2 | |||
3 | SjASMPlus Z80 Cross Compiler |
||
4 | |||
5 | This is modified sources of SjASM by Aprisobal - aprisobal@tut.by |
||
6 | |||
7 | Copyright (c) 2006 Sjoerd Mastijn |
||
8 | |||
9 | This software is provided 'as-is', without any express or implied warranty. |
||
10 | In no event will the authors be held liable for any damages arising from the |
||
11 | use of this software. |
||
12 | |||
13 | Permission is granted to anyone to use this software for any purpose, |
||
14 | including commercial applications, and to alter it and redistribute it freely, |
||
15 | subject to the following restrictions: |
||
16 | |||
17 | 1. The origin of this software must not be misrepresented; you must not claim |
||
18 | that you wrote the original software. If you use this software in a product, |
||
19 | an acknowledgment in the product documentation would be appreciated but is |
||
20 | not required. |
||
21 | |||
22 | 2. Altered source versions must be plainly marked as such, and must not be |
||
23 | misrepresented as being the original software. |
||
24 | |||
25 | 3. This notice may not be removed or altered from any source distribution. |
||
26 | |||
27 | */ |
||
28 | |||
29 | // io_tape.h |
||
30 | |||
31 | #ifndef __IO_TAPE |
||
32 | #define __IO_TAPE |
||
33 | |||
34 | enum ETapeHeaderType { BASIC = 0, NUMBERS, CHARS, CODE, HEADLESS = 255 }; |
||
35 | |||
36 | int TAP_SaveEmpty(char* fname); |
||
37 | int TAP_SaveBlock(char* fname, unsigned char flag, const char *ftapname, int start, int length, int param2, int param3); |
||
38 | int TAP_SaveSnapshot(char* fname, unsigned short start); |
||
39 | |||
40 | #endif |
||
41 | |||
42 | //eof io_tape.h |