Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the missing include/hucc/globals.h and enable compiling HuCC examples. #58

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile for examples
#

SUBDIRS = huc asm
SUBDIRS = hucc huc asm

all clean:
@$(MAKE) $(SUBDIRS) "COMMAND=$@"
Expand Down
18 changes: 18 additions & 0 deletions include/hucc/globals.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// **************************************************************************
// **************************************************************************
//
// globals.h
//
// **************************************************************************
// **************************************************************************
//
// The idea is that you, a PCE developer, copy this file from the ../include/
// directory and into your project's directory, and then define the variables
// that you want to have shared access to in all overlay programs on your CD.
//
// Because PCEAS searches the current (i.e. project) directory for an include
// file first, then it will find your customized copy of the file rather than
// the original copy in the ../include/ directory.
//
// **************************************************************************
// **************************************************************************