This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import sys | |
| class FatArch: | |
| def __init__(self, binary): | |
| self.cpuType = binary[0:4] | |
| self.cpuSubType = binary[4:8] | |
| self.offset = binary[8:12] | |
| self.size = binary[12:16] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/x86 5.4.207 Kernel Configuration | |
| # | |
| # | |
| # Compiler: gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 | |
| # | |
| CONFIG_CC_IS_GCC=y | |
| CONFIG_GCC_VERSION=90400 |
OlderNewer