mirror of
https://github.com/robmcmullen/atrcopy.git
synced 2025-03-03 13:30:16 +00:00
Added not_user_bit_mask
This commit is contained in:
parent
f2873c8b7d
commit
fd9ebe61b2
@ -11,7 +11,7 @@ from errors import *
|
||||
from ataridos import AtariDosDiskImage, AtariDosFile
|
||||
from diskimages import AtrHeader, BootDiskImage
|
||||
from kboot import KBootImage
|
||||
from segments import SegmentData, SegmentSaver, DefaultSegment, EmptySegment, ObjSegment, RawSectorsSegment, user_bit_mask, match_bit_mask, comment_bit_mask, data_bit_mask, selected_bit_mask, diff_bit_mask
|
||||
from segments import SegmentData, SegmentSaver, DefaultSegment, EmptySegment, ObjSegment, RawSectorsSegment, user_bit_mask, match_bit_mask, comment_bit_mask, data_bit_mask, selected_bit_mask, diff_bit_mask, not_user_bit_mask
|
||||
from spartados import SpartaDosDiskImage
|
||||
from utils import to_numpy
|
||||
|
||||
|
@ -4,6 +4,7 @@ from errors import *
|
||||
from utils import to_numpy, to_numpy_list
|
||||
|
||||
user_bit_mask = 0x07
|
||||
not_user_bit_mask = 0xff ^ user_bit_mask
|
||||
diff_bit_mask = 0x08
|
||||
match_bit_mask = 0x10
|
||||
comment_bit_mask = 0x20
|
||||
|
Loading…
x
Reference in New Issue
Block a user