diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2023-03-15 22:30:08 +0100 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2023-03-15 22:30:08 +0100 |
commit | df418208aa0570a99f6ab6657d54ee65d6162168 (patch) | |
tree | c68b3f968866e978852eed508a5605e914be3951 /pnr/de1_sine/makefile | |
parent | 0ace43acf8c1953289ae9ae3756d9f10949f060e (diff) |
added de1_sine sinewave generator for ADC/DAC board
I added a sinewave generator based on DDS in VHDL to
generate a sinewave with the ADC/DAC board. This can
be used to demonstrate the Aliasing Lowpass filter.
Diffstat (limited to 'pnr/de1_sine/makefile')
-rw-r--r-- | pnr/de1_sine/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pnr/de1_sine/makefile b/pnr/de1_sine/makefile new file mode 100644 index 0000000..404bf3d --- /dev/null +++ b/pnr/de1_sine/makefile @@ -0,0 +1,12 @@ +PROJECT = de1_sine + + +SOURCE_FILES = \ +../../src/de1_sine.vhd \ +../../src/sine_rtl.vhd + +FAMILY = "Cyclone II" +DEVICE = EP2C20F484C7 +PROGFILEEXT = sof + +include ../makefile |