Skip to content

Commit

Permalink
added source code
Browse files Browse the repository at this point in the history
  • Loading branch information
aquaxis committed Dec 5, 2019
1 parent d548a5a commit e704098
Show file tree
Hide file tree
Showing 29 changed files with 6,673 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Hidemi Ishihara

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
SHELL=/bin/bash
SETTING=source /opt/Xilinx/Vivado/2019.2/settings64.sh

.PHONY: all

all:
$(SETTING); vivado -mode batch -source create_ip.tcl
40 changes: 40 additions & 0 deletions create_ip.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
set PROJECT_NAME aq_axis_djpeg
set PART_NAME xc7z020clg400-1

create_project $PROJECT_NAME ./$PROJECT_NAME -part $PART_NAME -force

set FILES [list \
../$PROJECT_NAME/src/aq_axi_djpeg.v \
../$PROJECT_NAME/src/aq_axi_djpeg_ctrl.v \
../$PROJECT_NAME/src/aq_djpeg.v \
../$PROJECT_NAME/src/aq_djpeg_dht.v \
../$PROJECT_NAME/src/aq_djpeg_dqt.v \
../$PROJECT_NAME/src/aq_djpeg_fsm.v \
../$PROJECT_NAME/src/aq_djpeg_hm_decode.v \
../$PROJECT_NAME/src/aq_djpeg_huffman.v \
../$PROJECT_NAME/src/aq_djpeg_idct.v \
../$PROJECT_NAME/src/aq_djpeg_idct_calc.v \
../$PROJECT_NAME/src/aq_djpeg_idctb.v \
../$PROJECT_NAME/src/aq_djpeg_regdata.v \
../$PROJECT_NAME/src/aq_djpeg_ycbcr.v \
../$PROJECT_NAME/src/aq_djpeg_ycbcr2rgb.v \
../$PROJECT_NAME/src/aq_djpeg_ycbcr_mem.v \
../$PROJECT_NAME/src/aq_djpeg_ziguzagu.v \
]

add_files -norecurse $FILES

ipx::package_project -root_dir ../$PROJECT_NAME -vendor aquaxis.com -library aquaxis -taxonomy /UserIP

set_property core_revision 1 [ipx::current_core]

ipx::create_xgui_files [ipx::current_core]
ipx::update_checksums [ipx::current_core]
ipx::save_core [ipx::current_core]







Loading

0 comments on commit e704098

Please sign in to comment.