mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2025-07-10 03:23:55 +00:00
Rename FrameSequencer to FrameGrabber and break out into separate file.
Add a test case that the bmp2dhr output of input filenames containing '.' are handled correctly. Break out video.Mode into video_mode.VideoMode to resolve circular dependency.
This commit is contained in:
@ -4,6 +4,7 @@ import enum
|
||||
from typing import Iterator, Tuple
|
||||
|
||||
import symbol_table
|
||||
import video_mode
|
||||
from machine import Machine
|
||||
|
||||
|
||||
@ -64,7 +65,7 @@ class Header(Opcode):
|
||||
"""Video header opcode."""
|
||||
COMMAND = OpcodeCommand.HEADER
|
||||
|
||||
def __init__(self, mode: "video.Mode"):
|
||||
def __init__(self, mode: video_mode.VideoMode):
|
||||
self.video_mode = mode
|
||||
|
||||
def __data_eq__(self, other):
|
||||
|
Reference in New Issue
Block a user