mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-03 04:22:09 +08:00
14bead366a
This reverts commit 255c89c6ab.
5 lines
193 B
Python
5 lines
193 B
Python
class VirtGPU:
|
|
def __init__(self, gpuid): self.gpuid = gpuid
|
|
def map_range(self, vaddr, size): raise NotImplementedError()
|
|
def unmap_range(self, vaddr, size): raise NotImplementedError()
|