From 416e896956d3b05793337da6609fe1544797c0a9 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Thu, 22 Feb 2024 08:52:20 +0200 Subject: Add stuff, refactor --- atk16_emu/test/utils.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 atk16_emu/test/utils.py (limited to 'atk16_emu/test/utils.py') diff --git a/atk16_emu/test/utils.py b/atk16_emu/test/utils.py deleted file mode 100644 index 0d40d54..0000000 --- a/atk16_emu/test/utils.py +++ /dev/null @@ -1,25 +0,0 @@ -def pad_bytearray(to_length: int, ba: bytearray) -> bytearray: - """ - Pads a bytearray with zeros until it reaches a specified length. - - :param to_length: Target length in bytes. - :param ba: The bytearray to be padded. - :return: The padded bytearray. - """ - padding_size = to_length - len(ba) - if padding_size > 0: - ba.extend(b'\x00' * padding_size) - return ba - -def make_rom(words: list[int]) -> bytearray: - """ - Constructs a ROM image from a list of 16-bit words. - - :param words: The list of 16-bit words. - :return: The ROM image as a bytearray. - """ - bytes = [] - for word in words: - bytes.append((word >> 8) & 0xFF) - bytes.append(word & 0xFF) - return pad_bytearray(64 * 1024, bytearray(bytes)) \ No newline at end of file -- cgit v1.3