andy
be05b7905d
Affected files: .obsidian/community-plugins.json .obsidian/graph.json .obsidian/plugins/table-editor-obsidian/data.json .obsidian/plugins/table-editor-obsidian/main.js .obsidian/plugins/table-editor-obsidian/manifest.json .obsidian/plugins/table-editor-obsidian/styles.css .obsidian/workspace.json Charities.md Health/BWS.md History/Britain.md Lab/DNS.md Lab/Deleted Packages.md Lab/Ebook Laundering.md Lab/Home.md Lab/Mac.md Lab/Photo Migration.md Languages/Arabic.md Money/Assets/Derivative.md Money/Assets/Financial Instruments.md Money/Assets/Security.md Money/Econ.md Money/Equity.md Money/Giving.md Money/Markets/Commodity.md Money/Markets/Markets.md Money/Markets/Types.md STEM/AI/Literature.md STEM/AI/Properties.md STEM/CS/ABI.md STEM/CS/Code Types.md STEM/CS/Compilers.md STEM/CS/Language Binding.md STEM/CS/Languages/dotNet.md STEM/CS/Quantum.md STEM/CS/Resources.md STEM/CS/Turing Machines.md STEM/Maths/Algebra.md STEM/Semiconductors/Equations.md STEM/Signal Proc/Convolution.md STEM/Signal Proc/Fourier Transform.md STEM/Speech/Literature.md STEM/img/ai-io.png STEM/img/ai-nested-subjects.png STEM/img/cli-infrastructure.png Tattoo/Plans.md Tattoo/img/chest.png
1.2 KiB
1.2 KiB
Machine Code
- Machine language instructions
- Directly control CPU
- Strictly numerical
- Lowest-level representation of a compiled or assembled program
- Lowest-level visible to programmer
- Internally microcode might used
- Hardware dependent
- Higher-level languages translated to machine code
- Compilers, assemblers and linkers
- Not for interpreted code
- Interpreter runs machine code
- Assembly is effectively human readable machine code
- Has mnemonics for opcodes etc
Microcode
- Layer between CPU hardware and instruction set architecture
- Normally written during design phase
- Deployed to ROM or PLA
- Programmable logic array
- Deployed to ROM or PLA
- Machine code often has some backward compatibility
- Microcode is circuit specific
Byte Code
Portable Code
- Efficient execution by interpreter
- Compact numeric codes, constants and references
- Encode compiler output following analysis and validation
- Can be further compiled
- Typically passed to VM
- Java, Python
Object Code
- Product of compiler
- Sequence of statements
- Machine code
- Intermediate
- RTL
- Linked to form executable
- Object code portion of machine code not yet linked