[Solved] What needs to be added

Jacob, run help on a cmd prompt and you will get a huge list of available commands for you to implement C:\>help For more information on a specific command, type HELP command-name ASSOC Displays or modifies file extension associations. ATTRIB Displays or changes file attributes. BREAK Sets or clears extended CTRL+C checking. BCDEDIT Sets properties … Read more

[Solved] Jumping back 1000 lines

In x86 you don’t need a cascading sequence of jumps, since jmp can jump over the whole segment. Just a conditional jump like jne has a limited range. So you can change an errorneous conditional jump to a combination of an unconditional near jump and a conditional short jump: As an example, change .MODEL small … Read more