We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f6e584 commit 91bacaeCopy full SHA for 91bacae
qiling/core.py
@@ -208,9 +208,6 @@ def __init__(
208
if self.archtype not in QL_ARCH_NONEOS:
209
self._mem = component_setup("os", "memory", self)
210
self._reg = component_setup("arch", "register", self)
211
-
212
- if self.archtype in QL_ARCH_HARDWARE:
213
- self._hw = component_setup("hw", "hw", self)
214
215
self._arch = arch_setup(self.archtype, self)
216
@@ -263,14 +260,6 @@ def reg(self) -> "QlRegisterManager":
263
260
"""
264
261
return self._reg
265
262
266
- @property
267
- def hw(self) -> "QlHwManager":
268
- """ Qiling hardware manager.
269
270
- Example:
271
- """
272
- return self._hw
273
274
275
@property
276
def arch(self) -> "QlArch":
0 commit comments