Commit a0b44645 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski

wbgen_main: use pipelined code generator

parent 52e1a315
......@@ -17,6 +17,6 @@ Main "wbgen_regbank.lua"
Main "wbgen_rams.lua"
Main "wbgen_eic.lua"
Main "wbgen_fifos.lua"
Main "target_wishbone.lua"
Main "target_pipelined_wb.lua"
Main "wbgen_main.lua"
......@@ -140,9 +140,14 @@ if(periph == nil) then die ("missing peripheral declaration"); end
foreach_field( fix_prefix );
foreach_field( fix_access );
foreach_field( check_field_types );
foreach_reg(ALL_REG_TYPES, fix_prefix );
foreach_reg(ALL_REG_TYPES, check_obj_names_prefixes );
foreach_field( check_obj_names_prefixes );
periph = fix_prefix(periph);
wbgen_count_subblocks();
......@@ -172,7 +177,7 @@ foreach_reg({TYPE_REG, TYPE_RAM, TYPE_FIFO}, calc_address_sizes);
assign_addresses();
tree=gen_bus_logic_wishbone();
tree=gen_bus_logic_pipelined_wb(MODE_PIPELINED);
cgen_build_signals_ports();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment