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