fasmg icon indicating copy to clipboard operation
fasmg copied to clipboard

flat assembler g - adaptable assembly engine

Results 10 fasmg issues
Sort by recently updated
recently updated
newest added

I think is a bug area of put fasmg on path and fix examples with set include folder I suppose is need to add the fasmg on windows path and...

.gitattributes file to eliminate erroneous GitHub language detection.

https://github.com/tgrysztar/fasmg/blob/e6f827d605b42ec8bd3be39d83aeb5ec65125f64/core/source/malloc.inc#L213-L218 Duplicate lines look superfluous?

do you need help to make it work on Apple silicon? I can help :)

``` display 209,210,211,10 display 21' ``` The two lines above, when compiled, print three different characters on the first line of output, and one character on the second line. The...

Allow endianness to be changed in ELF output through a value in `ELF.Settings.Endianness`.

Present resource macros do not support multiple resources with the same ID: https://github.com/tgrysztar/fasmg/blob/708097133e86a9b98efaf59a011c3ae754cdf514/packages/x86/include/macro/resource.inc#L24-L70 It's best to use an external resource editor and load the RES file with: ``` section '.rsrc'...

I'm trying to use fasmg to write code in windows but, the format is not working Inside the format/pe.inc line 360, it fails to get `.SizeOfHeaders dd SIZE_OF_HEADERS`, even if...

Example code: `format MZ entry code_segment:start xdata = 0x100 segment code_segment use16 start: add ax, xdata + 0x100 ; correct mov ax, xdata + 0x100 ; correct mov ax, data_segment...