Skip to content

Commit

Permalink
fix binary write on windows, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpovey committed Aug 7, 2012
1 parent a7d6167 commit 9bb6a5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/TODO.txt
@@ -1,5 +1,6 @@
Scrappy TODO list

- write test for conditional warning on literal b. (also consider special ops)
- preprocessor, includes
- gas .ifdef works on normal symbols, not macro space
- incbin
Expand Down
2 changes: 1 addition & 1 deletion src/das.c
Expand Up @@ -293,7 +293,7 @@ int main(int argc, char **argv)
binfile = stdout;
/* info pointless - verbose mode incompatible */
} else {
binfile = fopen(binpath, "w");
binfile = fopen(binpath, "wb");
info("Write binary to %s\n", binpath);
}
if (!binfile) {
Expand Down
2 changes: 1 addition & 1 deletion src/das.h
Expand Up @@ -5,7 +5,7 @@
* Released under the GPL v2
*/

#define VERSION "0.16"
#define VERSION "0.17"
#define VERSTRING "das DCPU-16 Assembler, version " VERSION

extern struct options {
Expand Down

0 comments on commit 9bb6a5d

Please sign in to comment.