Rev 30 |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | Download
    | RSS feed
  
  
- `include "../include/tune.v" 
-   
- // PentEvo project (c) NedoPC 2008-2009 
- // 
- // manages ZX-bus IORQ-IORQGE stuff and free bus content 
- // 
- module zbus( 
-   
-         input iorq_n, 
-         input rd_n, 
-         input wr_n, 
-         input m1_n, 
-   
-         output iorq1_n, 
-         output iorq2_n, 
-   
-         input iorqge1, 
-         input iorqge2, 
-   
-         input porthit, 
-   
-         output drive_ff 
- ); 
-   
-   
-   
-         assign iorq1_n = iorq_n | porthit; 
-   
-         assign iorq2_n = iorq1_n | iorqge1; 
-   
-         assign drive_ff = ( (~(iorq2_n|iorqge2)) & (~rd_n) ) | (~(m1_n|iorq_n)); 
-   
-   
-   
-   
-   
- endmodule 
-