Dec 052017
 
Interpreting C compiler, generates Architecture Neutral Format output. This upgrade increases compatibility for WIN and OS2. Also several enhancements including long double and no-name structs for reading WINNT headers.

Full Description of File


OXCC v1.433 Interpreting C compiler with
language extensions. Generates output in
Architecture Neutral Format (ANF). Sample
back end and byte code interpreter source
code supplied. Callable from command line
or as a reentrant subroutine. Can regenerate
source after interpreting input.


File OXCC1433.ZIP from The Programmer’s Corner in
Category Recently Uploaded Files
Interpreting C compiler, generates Architecture Neutral Format output. This upgrade increases compatibility for WIN and OS2. Also several enhancements including long double and no-name structs for reading WINNT headers.
File Name File Size Zip Size Zip Type
CFRUN.EXE 130838 69955 deflated
CHANGES.TXT 4183 1870 deflated
DOC 0 0 stored
ANF.TXT 2547 1047 deflated
BTERP.TXT 730 429 deflated
C.GRM 17087 4670 deflated
CFAR.TXT 5589 1959 deflated
CFF.TXT 66529 17025 deflated
CFLS.TXT 1991 782 deflated
LRG.TXT 4388 1978 deflated
OBJ4LB.TXT 1269 593 deflated
OXCC.TXT 18357 6716 deflated
OXCCB.TXT 804 430 deflated
OXCCL.TXT 356 212 deflated
SKEL.TXT 2611 1090 deflated
FILE_ID.DIZ 294 207 deflated
MAKE.BAT 277 116 deflated
OXBOW.A 373804 159432 deflated
OXCC.CFF 633120 207185 deflated
OXLIB.CFF 657952 227795 deflated
README.TXT 5266 2061 deflated
SRC 0 0 stored
BINIMG.H 60703 15170 deflated
BTERP.C 70183 13680 deflated
CFAR.C 37456 9752 deflated
CFF.H 24677 6447 deflated
CFLS.4LB 15 15 stored
CFLS.C 74206 18518 deflated
CFLS.H 5757 2013 deflated
CFUTIL.MAK 487 211 deflated
ECALL.S 1504 323 deflated
LRANDOM.C 2109 1093 deflated
MAKOXCC.BAT 2029 250 deflated
MAKOXLIB.BAT 6932 665 deflated
OBJ4LB.C 22457 5857 deflated
OXANF.H 18744 5989 deflated
OXBOW.H 69557 17384 deflated
OXBYTES.H 7644 2631 deflated
OXCC.H 5358 1893 deflated
OXCC.MAP 8641 1819 deflated
OXCCAI.C 123248 29156 deflated
OXCCB.C 197503 39585 deflated
OXCCB.MAK 461 212 deflated
OXCCL.C 82180 20099 deflated
OXLIB.MAP 10939 1869 deflated
PARSER.C 43078 11951 deflated
SKELETON.C 53954 15032 deflated
TEST108.C 2681 876 deflated
TOXCC.C 3520 1300 deflated
TEST.BAT 1963 441 deflated

Download File OXCC1433.ZIP Here

Contents of the README.TXT file


OXCC v1.433 Interpreting C compiler with
language extensions. Generates output in
Architecture Neutral Format (ANF). Sample
back end and byte code interpreter source
code supplied. Callable from command line
or as a reentrant subroutine. Can regenerate
source after interpreting input.

OXCC C Compiler
Version 1.433
Nov 5, 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]


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 oxcc1433// 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.
YOU WRITEM.

OXCC can interpret its' input, it can also regenerate source code
after interpretation. Source regeneration properly handles `malloced'
data containing pointers. Slow mode interpretation keeps track of all
pointers, references and initializations, including hidden pointers.

OXCC is also callable as a subroutine or class from within the framework.
It can even be called by a program which is being compiled (see toxcc.c).
When called as a subroutine, the user can access all of the interesting
internal structures such as the Abstract Syntax Tree and the symbol table
at various stages of the multipass compilation.


CONTENTS OF THIS DISTRIBUTION after running make.bat

oxbow.a a.out,coff archive -- djcc v1.10. v1.12 compiled
oxlib.cff cff filesystem and archive (see cff.txt)
oxcc.cff C compiler + include files (see oxcc.txt)
obj4lb.exe symbol table whapper utility (see obj4lb.txt)
cfrun.exe skeleton framework and dynamic linker (see skel.txt)
oxcc.exe the compiler (see oxcc.txt)
oxccb.exe ANF to byte code back end (sample) (see oxccb.txt)
bterp.exe byte code interpreter (sample) (see bterp.txt)
oxccl.exe ANF linker (see oxccl.txt)
oxccai.exe ANF to Intel assembler code back end (incomplete)
cfar.exe archiver for .cff filesystems
cfls.exe lister for .cff and DOS filesystems (derived from GNU)
make.bat batch file to make some .exe files
test.bat batch file to test the compiler and byte code interpreter
changes.txt notes about what changed between versions
readme.txt this file

doc/anf.txt documentation for ANF
doc/bterp.txt documentation for bterp
doc/oxcc.txt documentation for oxcc
doc/oxccb.txt documentation for oxccb
doc/oxccl.txt documentation for oxccl
doc/cfar.txt documentation for cfar
doc/cfls.txt documentation for cfls
doc/skel.txt documentation for cfrun
doc/obj4lb.txt documentation for obj4lb
doc/c.grm C grammar for oxcc

src/obj4lb.c
src/cfar.c
src/cff.h
src/cfls.4lb
src/cfls.c
src/cfls.h
src/lrandom.c from BSD
src/oxanf.h
src/oxbytes.h
src/oxcc.h
src/oxccb.c
src/oxccl.c
src/oxccai.c
src/bterp.c
src/skeleton.c
src/skeleton.mak
src/oxccb.mak
src/cfutil.mak
src/oxlib.map verbose map of oxlib.cff
src/makoxlib.bat batch file to recreate oxlib.cff (info only)
src/oxcc.map verbose map of oxcc.cff
src/makoxcc.bat batch file to recreate oxcc.cff (info only)

QUICK TEST

After running `make.bat' and placing the .exe files in a directory in
your path, or setting OXPATH; you can run `test.bat' which exercises the
compiler `oxcc', the byte code backend `oxccb' and the byte code
interpreter `bterp'.



 December 5, 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)