tmcintos
tmcintos
It would be nice to have an option to accept unrecognized directives for compatibility with GNU assembly, for example: ` .file "example.c"` ` .option nopic` ` .section .rodata` ` .globl...
Support `.data` directives in `.text` section for read-only data. This would provide better compatibility with gcc-generated assembly code; e.g. https://godbolt.org/z/tTvkEE
Support `%hi()` and `%lo()` as in GNU assembler: ` lui a5,%hi(.LC0)` ` addi a0,a5,%lo(.LC0)` This would provide better compatibility with gcc-generated assembly code; e.g. https://godbolt.org/z/tTvkEE
Support `call` pseudo-instruction: `call offset` As per Table 20.2, https://content.riscv.org/wp-content/uploads/2017/05/riscv-spec-v2.2.pdf This would provide better compatibility with gcc-generated assembly code; e.g. https://godbolt.org/z/tTvkEE
**Describe the bug** Fonts in OPENSTEP 4.2 generally do not look right; font metrics seem to be wrong. This is is visible in menus and elsewhere, but it is especially...
It appears that the files `6502_functional_test.bin/lst` checked in under `bin_files` have not been updated to reflect the [latest commit from 2020](https://github.com/Klaus2m5/6502_65C02_functional_tests/commit/7954e2dbb49c469ea286070bf46cdd71aeb29e4b) By the way - Thanks for creating this—it's awesome!
(cherry picked from commit 9d3ebe3837c66c2e22a1182ec3a8d35bca5fcbab) I needed file-relative includes via `#include "..."` to work for my application, so I worked out a way of doing this. Hope this may be...
(cherry picked from commit e7cb2ed116ad7747bef8cebc2c4acc40be7a8dfa) On macOS 13.3.1(a) [arm64], I was hitting a crash due to `freopen_r()` returning null during expansion of empty macros, e.g. ``` #define EXTRA_LONG ``` I...
For my setup, I would like to have a D64 image for X16, analogous to the C16/C64 images. Is it possible to add this to the release?
x16-edit assumes device = 8 by default. I am working with device 9, where xed fails to open files. It appears that the alternative entry point $c006 must be used...