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
| Checks: "bugprone-*,clang-diagnostic-*,clang-analyzer-*,modernize-*,performance-*,readability-*" | |
| WarningsAsErrors: "" | |
| HeaderFilterRegex: "" | |
| CheckOptions: | |
| - key: readability-identifier-naming.PrivateMemberSuffix | |
| value: "_" |
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
| /** | |
| * DOS executable header reader | |
| * | |
| * This programs reads the binary header of a DOS executable file and prints its contents. | |
| * | |
| * Header specification sources: | |
| * http://www.fysnet.net/exehdr.htm | |
| * http://www.delorie.com/djgpp/doc/exe/ | |
| * | |
| * 2016- 2017 Balint Kiss |
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
| #include <iostream> | |
| #include <fstream> | |
| #include <cstdint> | |
| #include <vector> | |
| #include <stack> | |
| #include <iterator> | |
| enum Instruction | |
| { | |
| LITERAL = 0x00, |