Skip to content

Commit 500ff30

Browse files
committed
Move z80 opcodes listing into zxbasm
1 parent a396bc3 commit 500ff30

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

arch/zx48k/optimizer/asm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from .patterns import RE_OUTC, RE_INDIR16
44
from .helpers import single_registers
5-
import z80
5+
from zxbasm import z80
66

77
# Dict of patterns to normalized instructions. I.e. 'ld a, 5' -> 'LD A,N'
88
Z80_PATTERN = {}

zxbasm/asm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
# vim: ts=4:et:sw=4
44

5-
from z80 import Opcode, Z80SET
5+
from zxbasm.z80 import Opcode, Z80SET
66
from api.errors import Error
77
import re
88

File renamed without changes.

0 commit comments

Comments
 (0)