Revision 390
Added by markw about 10 years ago
mcc216/atari800core.qsf | ||
---|---|---|
set_global_assignment -name QIP_FILE pll_downstream_pal.qip
|
||
set_global_assignment -name QIP_FILE ntsc_pll.qip
|
||
set_global_assignment -name QIP_FILE pll_downstream_ntsc.qip
|
||
set_global_assignment -name QIP_FILE remote_update.qip
|
||
set_global_assignment -name VHDL_FILE delayed_reconfig.vhd
|
||
set_global_assignment -name SDC_FILE atari800core.sdc
|
||
set_global_assignment -name VERILOG_FILE sdram_ctrl_3_ports.v
|
||
set_global_assignment -name VHDL_FILE zpu_rom.vhdl
|
||
set_global_assignment -name VHDL_FILE atari800core_mcc.vhd
|
||
|
||
|
||
set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
|
||
set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
|
mcc216/atari800core_mcc.vhd | ||
---|---|---|
|
||
paddle_mode_next <= paddle_mode_reg xor (not(ps2_keys(16#11F#)) and ps2_keys_next(16#11F#)); -- left windows key
|
||
|
||
return_to_boot_menu : entity work.delayed_reconfig
|
||
PORT MAP
|
||
(
|
||
CLK_5MHZ => FPGA_CLK,
|
||
RESET_N => RESET_N,
|
||
RECONFIG_BUTTON => FKEYS(6)
|
||
);
|
||
|
||
atarixl_simple_sdram1 : entity work.atari800core_simple_sdram
|
||
GENERIC MAP
|
||
(
|
mcc216/build.sh | ||
---|---|---|
mkdir $dir;
|
||
`cp atari800core_mcc.vhd $dir`;
|
||
`cp *pll*.* $dir`;
|
||
`cp ../mcc_common/*remote_update*.* $dir`;
|
||
`cp ../mcc_common/*delayed_reconfig*.* $dir`;
|
||
`cp sdram_ctrl_3_ports.v $dir`;
|
||
`cp zpu_rom.vhdl $dir`;
|
||
`cp atari800core.sdc $dir`;
|
mcc216/zpu_rom.vhdl | ||
---|---|---|
X"06060004",
|
||
X"08080004",
|
||
X"09090004",
|
||
X"080f4300",
|
||
X"0a0f4300",
|
||
X"090f4200",
|
||
X"00000000",
|
||
X"04103a3d",
|
Also available in: Unified diff
Added return to boot menu to a800 mcc cores