|
@@ -2,7 +2,7 @@
|
|
|
// Top level module for the FPGA on the MAX80 board by
|
|
|
// Per Mårtensson and H. Peter Anvin
|
|
|
//
|
|
|
-// This is for MAX80 as slave on the ABC-bus.
|
|
|
+// This is for MAX80 as target on the ABC-bus.
|
|
|
//
|
|
|
|
|
|
// Sharing JTAG pins (via JTAGEN)
|
|
@@ -35,7 +35,7 @@ module max80 (
|
|
|
output abc_nmi_x, // System NMI request (ABC800)
|
|
|
output abc_xm_x, // System memory override (ABC800)
|
|
|
// Host/device control
|
|
|
- output abc_master, // 1 = host, 0 = device
|
|
|
+ output abc_host, // 1 = host, 0 = target
|
|
|
output abc_a_oe,
|
|
|
// Bus isolation
|
|
|
output abc_d_ce_n,
|
|
@@ -369,7 +369,7 @@ module max80 (
|
|
|
.abc_int800_x ( abc_int800_x ),
|
|
|
.abc_nmi_x ( abc_nmi_x ),
|
|
|
.abc_xm_x ( abc_xm_x ),
|
|
|
- .abc_master ( abc_master ),
|
|
|
+ .abc_host ( abc_host ),
|
|
|
.abc_a_oe ( abc_a_oe ),
|
|
|
.abc_d_ce_n ( abc_d_ce_n ),
|
|
|
|