architecture/subsystems
This commit is contained in:
parent
27ce3ca25c
commit
1857f0e1b0
2 changed files with 7 additions and 13 deletions
|
@ -1,5 +1,6 @@
|
|||
import os
|
||||
|
||||
import arguments
|
||||
import distribution
|
||||
import subsystem
|
||||
|
||||
|
@ -12,11 +13,16 @@ class Architecture:
|
|||
self.name = name
|
||||
self.bits = bits
|
||||
self.distribution = distribution.Distribution(self)
|
||||
self.subsystems = {s: subsystem.SubSystem(self, s) for s in subsystems}
|
||||
self.subsystems = {s: subsystem.SubSystem(self, s)
|
||||
for s in [f if f == subsystem.MAIN
|
||||
else f'{f}{self.bits}'
|
||||
for f in arguments.subsystems]
|
||||
if s in subsystems}
|
||||
|
||||
def __str__(self):
|
||||
lines = [
|
||||
f'Name: {self.name}',
|
||||
f'Bits: {self.bits}',
|
||||
]
|
||||
return os.linesep.join(lines)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue