aboutsummaryrefslogtreecommitdiff
path: root/kapi/gdb/device.py
blob: b655972c4d95e3db5cec33851bc5a1f301b72881 (plain)
1
2
3
4
5
6
7
8
9
import gdb
from teachos import TeachOSBasePrinter


class KapiDevicesDevicePrinter(TeachOSBasePrinter):
    def to_string(self):
        return (
            f"{self.value['m_name']} @ {self.value['m_major']}:{self.value['m_minor']}"
        )