6f34f74e9b
date: 2026-04-10T22:07:44 master commit: 4ba0c4b574bff994e9a8f7266b4969b39380a8b1
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()
|