blob: ccfec997dcbba033f36005b871b1813dbe071e98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
; Zilog eZ80 ANSI C Compiler Release 3.4
; -optsize -nomodsect -peephole -globalopt -localcse
; -const=ROM
FILE "..\FILES.C"
.assume ADL=1
SEGMENT BSS
___stdio_files:
DS 5
XDEF ___stdio_files
; 1 #include <stdio.h>
; 2
; 3 FILE __stdio_files[FOPEN_MAX];
END
|