Changeset 10 in XOpenSparcT1 for trunk/os2wb


Ignore:
Timestamp:
03/22/11 20:08:58 (14 years ago)
Author:
pntsvt00
Message:

versione sintetizzabile

Location:
trunk/os2wb
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/os2wb/os2wb.v

    r6 r10  
    154154   end 
    155155         
    156 pcx_fifo pcx_fifo_inst(  
     156/*pcx_fifo pcx_fifo_inst(  
    157157       // FIFO should be first word fall-through 
    158158       // It has no full flag as the core will send only limited number of requests, 
     
    171171    .q(pcx_data_fifo) 
    172172); 
     173*/ 
     174pcx_fifo pcx_fifo_inst(  
     175    .clk(clk), 
     176         .rst(!rstn), 
     177    .din({pcx_atom_1,pcx_req_1,pcx_data}), 
     178    .rd_en(fifo_rd), 
     179    .wr_en((pcx_req_1!=5'b00000 && pcx_data[123]) || (pcx_atom_2 && pcx_data_123_d)),  
     180    .empty(pcx_fifo_empty), 
     181    .dout(pcx_data_fifo) 
     182); 
     183         
     184 
     185 
    173186// -------------------------- 
    174187 
  • trunk/os2wb/s1_top.v

    r6 r10  
    180180 
    181181  ); 
    182  
     182/* 
    183183  sparc sparc_1 ( 
    184184 
     
    230230 
    231231  ); 
    232  
     232*/ 
    233233  /* 
    234234   * SPARC Core to Wishbone Master bridge 
     
    240240wire [144:0] fp_cpx; 
    241241 
    242 os2wb_dual os2wb_inst ( 
     242//os2wb_dual os2wb_inst ( 
     243os2wb os2wb_inst ( 
    243244    .clk(sys_clock_i),  
    244245    .rstn(~sys_reset_final),  
     
    251252    .cpx_packet(cpx_spc_data_cx2),  
    252253          
    253     .pcx1_req(spc1_pcx_req_pq),  
    254     .pcx1_atom(spc1_pcx_atom_pq),  
    255     .pcx1_data(spc1_pcx_data_pa),  
    256     .pcx1_grant(pcx1_spc_grant_px),  
    257     .cpx1_ready(cpx1_spc_data_rdy_cx2),  
    258     .cpx1_packet(cpx1_spc_data_cx2),  
     254    //.pcx1_req(spc1_pcx_req_pq),  
     255    //.pcx1_atom(spc1_pcx_atom_pq),  
     256    //.pcx1_data(spc1_pcx_data_pa),  
     257    //.pcx1_grant(pcx1_spc_grant_px),  
     258    //.cpx1_ready(cpx1_spc_data_rdy_cx2),  
     259    //.cpx1_packet(cpx1_spc_data_cx2),  
    259260 
    260261    .wb_data_i(wbm_data_i),  
Note: See TracChangeset for help on using the changeset viewer.