(self, port_number, byte_value)
| 96 | return status, value |
| 97 | |
| 98 | def write_port_byte(self, port_number, byte_value): |
| 99 | return self.__kb.KbWritePortByte(c_ushort(port_number), c_byte(byte_value)) |
| 100 | |
| 101 | def write_port_word(self, port_number, word_value): |
| 102 | return self.__kb.KbWritePortWord(c_ushort(port_number), c_byte(word_value)) |
nothing calls this directly
no outgoing calls
no test coverage detected