

ISE_PATH=/opt/Xilinx/12.3/ISE_DS/ISE


all:
	mkdir vga1024x768
	cd vga1024x768
	wget http://www.dossmatik.de/ghdl/tb_vga.vhd
	wget http://www.dossmatik.de/ghdl/vga1024_768.vhd
	ghdl -i --work=unisim $(ISE_PATH)/vhdl/src/unisims/*.vhd
	ghdl -i --work=unisim $(ISE_PATH)/vhdl/src/unisims/primitive/*.vhd
	ghdl -i *.vhd
	ghdl -m -g -Punisim --warn-unused --ieee=synopsys tb_vga
	ghdl -r tb_vga --stop-time=20000ns --wave=vga.ghw

view:	
	gtkwave  vga.ghw


