-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luke Chen
committed
Sep 2, 2018
1 parent
7001280
commit 4fad52d
Showing
6 changed files
with
24 additions
and
73 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Tools | ||
===== | ||
|
||
## debug.exe | ||
- Copied from `Windows XP` | ||
- Also works under `DOS Box` | ||
- For debugging 16-bit programs (such as the ones under DOS directory) | ||
|
||
## fixvhdwr.exe | ||
Fill your binary file into the MBR part of *.vhd. | ||
|
||
## HexView.exe | ||
A file viewer that displays file contents in hex mode. | ||
|
||
## dd.exe | ||
this is dd for Windows, if you prefer to CLI, it's your best parterner. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*nix | ||
==== | ||
|
||
For `GNU/Linux`, `Unix` and `Mac OS X`, use `dd` is enough. | ||
|
||
``` | ||
$ dd if=xx.bin of=xx.img seek=0 bs=512 count=1 conv=notrunc | ||
``` |