Dec 082017
 
Update to interpreting C compiler that generates Archicecture Neutral Format output. Source code for back ends included. The compiler is now callable as a reentrant subroutine or class as well as useable from the command l

Full Description of File


OXCC v1.420 Multipass, interpreting
C compiler with language extensions. Output
in Architecture Neutral Format (ANF). Sample
back end source code supplied. Produce
16 bit, 32 bit, 64 bit, segmented and flat
model code for any target architecture and
operating system. Also, can regenerate source
after interpreting input. Now reentrant.


File OXCC1420.ZIP from The Programmer’s Corner in
Category Recently Uploaded Files
Update to interpreting C compiler that generates Archicecture Neutral Format output. Source code for back ends included. The compiler is now callable as a reentrant subroutine or class as well as useable from the command l
File Name File Size Zip Size Zip Type
AOUT4LB.EXE 81307 41607 deflated
CFAR.CFF 42880 16967 deflated
CFDEL.CFF 27328 5693 deflated
CFIN.CFF 30208 8326 deflated
CFLS.CFF 58400 17261 deflated
CFRUN.EXE 102040 52866 deflated
DOC 0 0 stored
ANF.DOC 2547 1047 deflated
AOUT4LB.DOC 983 486 deflated
BTERP.DOC 350 227 deflated
C.GRM 16921 4617 deflated
CFAR.DOC 4380 1517 deflated
CFDEL.DOC 129 112 deflated
CFF.DOC 66342 16973 deflated
CFIN.DOC 778 403 deflated
CFLS.DOC 1991 782 deflated
LRG.DOC 4389 1985 deflated
OXCC.DOC 17384 6351 deflated
OXCCB.DOC 789 419 deflated
OXCCL.DOC 356 212 deflated
SKEL.DOC 1550 738 deflated
FILE_ID.DIZ 351 245 deflated
MAKE.BAT 230 63 deflated
OXBOW.A 359840 155448 deflated
OXLIB.CFF 1441504 523792 deflated
README 4722 1796 deflated
SRC 0 0 stored
AOUT4LB.C 18757 5642 deflated
BTERP.C 66487 12964 deflated
CFAR.C 25775 6877 deflated
CFDEL.C 2481 1025 deflated
CFF.H 23727 5880 deflated
CFIN.C 7058 2175 deflated
CFLS.4LB 15 15 stored
CFLS.C 74203 18511 deflated
CFLS.H 5782 2021 deflated
CFPORT.C 15003 4286 deflated
CFUTIL.MAK 574 210 deflated
CMALLOC.C 28043 7187 deflated
ECALL.S 1375 300 deflated
GO32.EXE 55580 31224 deflated
LRANDOM.C 2118 1082 deflated
OXANF.H 21122 6907 deflated
OXBYTES.H 7522 2605 deflated
OXCC.H 17114 5164 deflated
OXCCAX.C 109092 24682 deflated
OXCCB.C 175205 35623 deflated
OXCCB.MAK 394 162 deflated
OXCCL.C 77257 18460 deflated
PARSER.C 46895 12737 deflated
TOXCC.C 2710 1004 deflated

Download File OXCC1420.ZIP Here

Contents of the README file


OXCC v1.420 Multipass, interpreting
C compiler with language extensions. Output
in Architecture Neutral Format (ANF). Sample
back end source code supplied. Produce
16 bit, 32 bit, 64 bit, segmented and flat
model code for any target architecture and
operating system. Also, can regenerate source
after interpreting input. Now reentrant.

OXCC C Compiler
Version 1.400
May 15, 1995

Copyright (c) 1994, 1995 by Norman D. Culver
All Rights Reserved.


Send bug reports and suggestions to:
Oxbow Software
1323 S.E. 17th Street #662
Ft. Lauderdale, FL 33316
(305) 527-1663 Phone
(305) 760-7584 Fax
[email protected]
[email protected]


This software package is distributed as a preliminary version for
TESTING PURPOSES ONLY, WITHOUT ANY WARRANTY;
without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

This product includes software developed by the
University of California, Berkeley and its contributors.




INSTALLATION FOR DOS BASED MACHINES

c:
mkdir /oxbow
cd /oxbow
unzip -d oxcc1400// or pkunzip
make// runs the batch file make.bat

At this point you will have a number of .exe files in the oxbow
directory. You can add oxbow to the PATH variable in autoexec.bat
or you can move the .exe files to a preferred directory.
If you don't like the directory name `oxbow' you can pick another
name but you will have to enter an environment variable `OXPATH'
in the autoexec.bat file. e.g. SET OXPATH=mydir



WHAT IS OXCC AND WHY SHOULD YOU BE INTERESTED

OXCC is a multipass, interpreting C compiler with several language
extensions. It generates an Architecture Neutral Format (ANF) output
and comes with a couple of example back ends. Programmers are expected
to write additional back ends for their specific needs.

Language extensions have been inspired by GCC, MSC and Watcom C.
OXCC is designed to produce 16 bit, 32 bit, 64 bit, segmented and
flat model code for any target architecture and operating system.

OXCC can interpret its' input, it can also regenerate source code
after interpretation. Source regeneration properly handles `malloced'
data containing pointers.

OXCC will shortly be available as a re-entrant subroutine or class
which can be added directly to application programs. It provides
full access to the internal Abstract Syntax Tree and symbol table.


CONTENTS OF THIS DISTRIBUTION

oxbow.a a.out archive -- djcc compiled
oxlib.cff cff filesystem and archive (see cff.doc)
cfin.cff small archive for the program `cfin' (see cfin.doc)
cfar.cff small archive for the program `cfar' (see cfar.doc)
cfdel.cff small archive for the program `cfdel' (see cfdel.doc)
cfls.cff small archive for the program `cfls' (see cfls.doc)
aout4lb.exe symbol table whapper utility (see aout4lb.doc)
cfrun.exe skeleton framework and dynamic linker (see skel.doc)
oxcc.exe application manufactured by make.bat (see oxcc.doc)
oxccb.exe ANF to byte code back end (see oxccb.doc)
bterp.exe byte code interpreter (see bterp.doc)
oxccl.exe ANF linker (see oxccl.doc)
cfar.exe archiver for .cff filesystems
cfin.exe file inputter for .cff filesystems
cfls.exe lister for .cff and DOS filesystems (derived from GNU)
cfdel.exe deleter for .cff filesytems
make.bat batch file to make some .exe files

doc/anf.doc documentation for ANF
doc/bterp.doc documentation for bterp
doc/oxcc.doc documentation for oxcc
doc/oxccb.doc documentation for oxccb
doc/oxccl.doc documentation for oxccl
doc/cfar.doc documentation for cfar
doc/cfin.doc documentation for cfin
doc/cfdel.doc documentation for cfdel
doc/cfls.doc documentation for cfls
doc/skel.doc documentation for cfrun
doc/aout4lb.doc documentation for aout4lb
doc/c.grm C grammar for oxcc

src/aout4lb.c
src/cfar.c
src/cfdel.c
src/cff.h
src/cfin.c
src/cfls.4lb
src/cfls.c
src/cfls.h
src/cfport.c
src/cmalloc.c
src/ecall.s
src/go32.exe
src/lrandom.c
src/oxanf.h
src/oxbytes.h
src/oxcc.h
src/oxccb.c
src/oxccl.c
src/bterp.c
src/oxccb.mak
src/cfutil.mak



 December 8, 2017  Add comments

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)