mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-02 06:03:43 +08:00
7 lines
216 B
Python
7 lines
216 B
Python
class VirtGPU:
|
|
def __init__(self, gpuid):
|
|
self.gpuid = gpuid
|
|
self.regs = {}
|
|
def map_range(self, vaddr, size): raise NotImplementedError()
|
|
def unmap_range(self, vaddr, size): raise NotImplementedError()
|