diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-05-28 15:22:11 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-05-28 15:22:11 +0000 |
| commit | 51091f7355a89aab6347523f3e3e53ed328b4dfc (patch) | |
| tree | c3a11ca809ba075a8e2b37c217c6ed6278905ff2 /riscv.py | |
| parent | tests, cleanup, verify.py (diff) | |
| download | subv-51091f7355a89aab6347523f3e3e53ed328b4dfc.tar.gz subv-51091f7355a89aab6347523f3e3e53ed328b4dfc.zip | |
survey, pack
Diffstat (limited to 'riscv.py')
| -rw-r--r-- | riscv.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -160,6 +160,10 @@ class TestHelpers(unittest.TestCase): byteify((0x12345678, 32)), [(0x78,), (0x56,), (0x34,), (0x12,)] ) + self.assertEqual( + byteify((0x4801813, 32)), + [(0x13,), (0x18,), (0x80,), (0x04,)] + ) class TestFormats(unittest.TestCase): def test_format_u(self): |
