mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-12-30 15:29:26 +00:00
Add a video Mode enum.
This commit is contained in:
parent
de8747ff37
commit
a188216f90
@ -1,5 +1,6 @@
|
||||
"""Encode a sequence of images as an optimized stream of screen changes."""
|
||||
|
||||
import enum
|
||||
import heapq
|
||||
import os
|
||||
import queue
|
||||
@ -18,6 +19,11 @@ import opcodes
|
||||
import screen
|
||||
|
||||
|
||||
class Mode(enum.Enum):
|
||||
HGR = 0
|
||||
DHGR = 1
|
||||
|
||||
|
||||
class Video:
|
||||
"""Apple II screen memory map encoding a bitmapped frame."""
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user