rename ioN_inputval to ioN_cell_in
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 13:50:42 +0000 (14:50 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Mon, 25 Jun 2018 13:50:42 +0000 (14:50 +0100)
src/bsv/interface_decl.py
src/test_bsv/pinmux.bsv

index 0741de04abe89884d80f6623628d5fe6cbd4a127..4d37fd4cd23d55c303df9fb241d898d3ce9a48e2 100644 (file)
@@ -329,7 +329,7 @@ io_interface = IOInterface(
     'io',
     [{'name': 'cell_out', 'enabled': True, },
      {'name': 'cell_outen', 'enabled': True, 'outenmode': True, },
-     {'name': 'inputval', 'action': True, 'io': True}, ])
+     {'name': 'cell_in', 'action': True, 'io': True}, ])
 
 # == Peripheral Interface definitions == #
 # these are the interface of the peripherals to the pin mux
index f18f90ff9b2824f9e35c6b3a2005b09d051d4e07..6fd32a7ef070ef2fb7747011b66654c90261b46f 100644 (file)
@@ -28,17 +28,17 @@ package pinmux;
     (*always_ready,always_enabled*) method  Bit#(1) io0_cell_out;
     (*always_ready,always_enabled*) method  Bit#(1) io0_cell_outen;
     (*always_ready,always_enabled,result="io"*) method 
-                       Action io0_inputval (Bit#(1) in);
+                       Action io0_cell_in (Bit#(1) in);
           // interface declaration between IO-1 and pinmux
     (*always_ready,always_enabled*) method  Bit#(1) io1_cell_out;
     (*always_ready,always_enabled*) method  Bit#(1) io1_cell_outen;
     (*always_ready,always_enabled,result="io"*) method 
-                       Action io1_inputval (Bit#(1) in);
+                       Action io1_cell_in (Bit#(1) in);
           // interface declaration between IO-2 and pinmux
     (*always_ready,always_enabled*) method  Bit#(1) io2_cell_out;
     (*always_ready,always_enabled*) method  Bit#(1) io2_cell_outen;
     (*always_ready,always_enabled,result="io"*) method 
-                       Action io2_inputval (Bit#(1) in);
+                       Action io2_cell_in (Bit#(1) in);
           // interface declaration between UART-0 and pinmux
     (*always_ready,always_enabled*) method  Action uart_tx (Bit#(1) in);
     (*always_ready,always_enabled*) method  Bit#(1) uart_rx;
@@ -211,19 +211,19 @@ package pinmux;
 
       method io0_cell_out=cell0_mux_out;
       method io0_cell_outen=cell0_mux_outen;
-      method Action  io0_inputval(Bit#(1) in);
+      method Action  io0_cell_in(Bit#(1) in);
          cell0_mux_in<=in;
       endmethod
 
       method io1_cell_out=cell1_mux_out;
       method io1_cell_outen=cell1_mux_outen;
-      method Action  io1_inputval(Bit#(1) in);
+      method Action  io1_cell_in(Bit#(1) in);
          cell1_mux_in<=in;
       endmethod
 
       method io2_cell_out=cell2_mux_out;
       method io2_cell_outen=cell2_mux_outen;
-      method Action  io2_inputval(Bit#(1) in);
+      method Action  io2_cell_in(Bit#(1) in);
          cell2_mux_in<=in;
       endmethod