mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-23 23:12:04 +08:00
dd778596b7
date: 2025-03-15T21:10:51 master commit: fb7b9c0f9420d228f03362970ebcfb7237095cf3
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()
|