├── LICENSE ├── README.md ├── datas ├── bg.coe ├── end.coe ├── end_music.coe ├── enemy1.coe ├── game_music.coe ├── myatk.coe ├── myplane.coe ├── start.coe └── start_music.coe ├── game_top.bit ├── image └── README │ ├── 1626592643691.jpg │ ├── 1626592665684.jpg │ ├── 1626592673839.jpg │ └── 1626592700356.jpg ├── sources ├── LFSR.v ├── decoder_3_8.v ├── dig_driver.v ├── divider.v ├── end_bgm.v ├── end_part.v ├── game_bg.v ├── game_bgm.v ├── game_part.v ├── game_tb.v ├── game_top.v ├── game_top.xdc ├── ip │ ├── clk_divider.v │ ├── clk_divider_clk_wiz.v │ ├── clk_divider_sim_netlist.v │ ├── clk_divider_stub.v │ ├── rom_atk_sim_netlist.v │ ├── rom_atk_stub.v │ ├── rom_bg_sim_netlist.v │ ├── rom_bg_stub.v │ ├── rom_end_music_sim_netlist.v │ ├── rom_end_music_stub.v │ ├── rom_end_pic_sim_netlist.v │ ├── rom_end_pic_stub.v │ ├── rom_enemy_sim_netlist.v │ ├── rom_enemy_stub.v │ ├── rom_game_music_sim_netlist.v │ ├── rom_game_music_stub.v │ ├── rom_myplane_sim_netlist.v │ ├── rom_myplane_stub.v │ ├── rom_start_music_sim_netlist.v │ ├── rom_start_music_stub.v │ ├── rom_start_pic_sim_netlist.v │ └── rom_start_pic_stub.v ├── mp3_driver.v ├── start_bgm.v ├── start_part.v └── vga_driver.v └── 数字逻辑综合实验报告-1953080-田宇.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/README.md -------------------------------------------------------------------------------- /datas/bg.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/bg.coe -------------------------------------------------------------------------------- /datas/end.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/end.coe -------------------------------------------------------------------------------- /datas/end_music.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/end_music.coe -------------------------------------------------------------------------------- /datas/enemy1.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/enemy1.coe -------------------------------------------------------------------------------- /datas/game_music.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/game_music.coe -------------------------------------------------------------------------------- /datas/myatk.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/myatk.coe -------------------------------------------------------------------------------- /datas/myplane.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/myplane.coe -------------------------------------------------------------------------------- /datas/start.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/start.coe -------------------------------------------------------------------------------- /datas/start_music.coe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/datas/start_music.coe -------------------------------------------------------------------------------- /game_top.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/game_top.bit -------------------------------------------------------------------------------- /image/README/1626592643691.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/image/README/1626592643691.jpg -------------------------------------------------------------------------------- /image/README/1626592665684.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/image/README/1626592665684.jpg -------------------------------------------------------------------------------- /image/README/1626592673839.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/image/README/1626592673839.jpg -------------------------------------------------------------------------------- /image/README/1626592700356.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/image/README/1626592700356.jpg -------------------------------------------------------------------------------- /sources/LFSR.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/LFSR.v -------------------------------------------------------------------------------- /sources/decoder_3_8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/decoder_3_8.v -------------------------------------------------------------------------------- /sources/dig_driver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/dig_driver.v -------------------------------------------------------------------------------- /sources/divider.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/divider.v -------------------------------------------------------------------------------- /sources/end_bgm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/end_bgm.v -------------------------------------------------------------------------------- /sources/end_part.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/end_part.v -------------------------------------------------------------------------------- /sources/game_bg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_bg.v -------------------------------------------------------------------------------- /sources/game_bgm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_bgm.v -------------------------------------------------------------------------------- /sources/game_part.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_part.v -------------------------------------------------------------------------------- /sources/game_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_tb.v -------------------------------------------------------------------------------- /sources/game_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_top.v -------------------------------------------------------------------------------- /sources/game_top.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/game_top.xdc -------------------------------------------------------------------------------- /sources/ip/clk_divider.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/clk_divider.v -------------------------------------------------------------------------------- /sources/ip/clk_divider_clk_wiz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/clk_divider_clk_wiz.v -------------------------------------------------------------------------------- /sources/ip/clk_divider_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/clk_divider_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/clk_divider_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/clk_divider_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_atk_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_atk_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_atk_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_atk_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_bg_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_bg_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_bg_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_bg_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_end_music_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_end_music_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_end_music_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_end_music_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_end_pic_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_end_pic_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_end_pic_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_end_pic_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_enemy_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_enemy_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_enemy_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_enemy_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_game_music_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_game_music_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_game_music_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_game_music_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_myplane_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_myplane_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_myplane_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_myplane_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_start_music_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_start_music_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_start_music_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_start_music_stub.v -------------------------------------------------------------------------------- /sources/ip/rom_start_pic_sim_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_start_pic_sim_netlist.v -------------------------------------------------------------------------------- /sources/ip/rom_start_pic_stub.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/ip/rom_start_pic_stub.v -------------------------------------------------------------------------------- /sources/mp3_driver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/mp3_driver.v -------------------------------------------------------------------------------- /sources/start_bgm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/start_bgm.v -------------------------------------------------------------------------------- /sources/start_part.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/start_part.v -------------------------------------------------------------------------------- /sources/vga_driver.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/sources/vga_driver.v -------------------------------------------------------------------------------- /数字逻辑综合实验报告-1953080-田宇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/King-ty/PlaneWarGame/HEAD/数字逻辑综合实验报告-1953080-田宇.pdf --------------------------------------------------------------------------------