- Timestamp:
- 07/10/2017 12:28:14 PM (7 years ago)
- Branches:
- master
- Children:
- b28a12e
- Parents:
- 6262b5c
- Location:
- misc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/c-files.txt
r6262b5c r39a696b 4 4 include/charset.h 5 5 include/cmeta.h 6 include/configs.h7 6 include/ctype.h 8 7 include/curpak.h 9 8 include/debug.h 10 include/dfltins.h11 9 include/errdefs.h 12 10 include/errno.h … … 15 13 include/fpu.h 16 14 include/fspars.h 17 include/glcbars.h18 15 include/glcdefs.h 19 include/glcfns.h20 16 include/graphdef.h 21 17 include/hwdefs.h 22 18 include/instdsp.h 23 19 include/io.h 24 include/knmtab.h25 20 include/lcdline.h 26 21 include/libdsp.h 27 22 include/macros.h 28 include/memory.h29 23 include/menu.h 30 24 include/midas.h 31 include/neddefs.h32 25 include/objdefs.h 33 26 include/panel.h 34 27 include/patch.h 35 include/portab.h36 28 include/ptdisp.h 37 include/ptoftab.h38 include/ratio.h39 include/rawio.h40 29 include/regs.h 41 30 include/scdsp.h 42 include/scfns.h43 31 include/sclock.h 44 32 include/score.h 45 33 include/scwheel.h 46 include/secdefs.h47 34 include/secops.h 48 35 include/setjmp.h … … 52 39 include/stddefs.h 53 40 include/stdio.h 54 include/strings.h55 include/swrtab.h56 41 include/timers.h 57 42 include/tundsp.h 58 43 include/uartio.h 59 44 include/vsdd.h 60 include/vsddsw.h61 include/vsddvars.h62 include/wdcurtb.h63 45 include/wordq.h 64 46 include/wsdsp.h -
misc/gen-glob.py
r6262b5c r39a696b 27 27 28 28 ast = parse_file(path, use_cpp = True, cpp_path = cross_gcc, 29 cpp_args = ["-E", "-I", "include" , "-include", "predef.h"])29 cpp_args = ["-E", "-I", "include"]) 30 30 # ast.show() 31 31 -
misc/proto.c
r6262b5c r39a696b 1 #include "all.h" 2 1 3 int8_t ac_code; 2 4 int16_t errno; 3 int16_t timers[ 1];5 int16_t timers[NTIMERS]; 4 6 5 7 // ---------- vvv ---------- wdfield.c -
misc/proto.x
r6262b5c r39a696b 15 15 extern int8_t ac_code; 16 16 extern int16_t errno; 17 extern int16_t timers[ ];17 extern int16_t timers[8]; 18 18 19 19 /*
Note:
See TracChangeset
for help on using the changeset viewer.