diff options
| author | Keith Packard <keithp@keithp.com> | 2017-04-02 20:33:49 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-04-02 20:33:49 -0700 | 
| commit | 5bb9cf38c84663713c178f54b684d40b6c00b11d (patch) | |
| tree | 84b904b14d38a04dc8d6a372c4c082ac2314ddc5 /src/cortexelf-v1/Makefile | |
| parent | 8c1478b55f5dbe9711b31a34d4f5e3563f1f42d2 (diff) | |
cortexelf-v1: Add bit flipping array generator
Someone hooked up the data lines between the systems backwards, so we
get to swizzle the bits in software.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/cortexelf-v1/Makefile')
| -rw-r--r-- | src/cortexelf-v1/Makefile | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cortexelf-v1/Makefile b/src/cortexelf-v1/Makefile index b491c2e4..77598dda 100644 --- a/src/cortexelf-v1/Makefile +++ b/src/cortexelf-v1/Makefile @@ -28,9 +28,9 @@ INC = \  	ao_lisp.h \  	ao_lisp_const.h \  	ao_lisp_os.h \ +	ao_flip_bits.h \  	Makefile -  #PROFILE=ao_profile.c  #PROFILE_DEF=-DAO_PROFILE=1 @@ -123,7 +123,10 @@ distclean:	clean  clean::  	rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx -	rm -f ao_product.h +	rm -f ao_product.h ao_flip_bits.h + +ao_flip_bits.h: ao_flip_bits.5c +	nickle ao_flip_bits.5c > $@  include ../lisp/Makefile-lisp  | 
