I want to learn how to use inline assembly for LDC with GCC syntax specifically so I can support all the targets (as here it is said that DMD intel-like syntax only supports the "i386" and "amd64" targets) but I cannot find anything other this outdated page where It seems that it doesn't work (at least not for the sys_write example). Any ideas?
Thread overview |
---|
December 15, 2021 Is there a place I can learn LLD inline assembly with GCC syntax? | ||||
---|---|---|---|---|
| ||||
December 15, 2021 Re: Is there a place I can learn LLD inline assembly with GCC syntax? | ||||
---|---|---|---|---|
| ||||
Posted in reply to rempas | On Wednesday, 15 December 2021 at 09:26:28 UTC, rempas wrote: >I want to learn how to use inline assembly for LDC with GCC syntax specifically so I can support all the targets (as here it is said that DMD intel-like syntax only supports the "i386" and "amd64" targets) but I cannot find anything other this outdated page where It seems that it doesn't work (at least not for the sys_write example). Any ideas? The wiki page you linked to describes LDC's own inline assembly syntax, which supports all targets but is no longer recommended. cheers, |
December 16, 2021 Re: Is there a place I can learn LLD inline assembly with GCC syntax? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Johan | On Wednesday, 15 December 2021 at 21:57:39 UTC, Johan wrote: >The wiki page you linked to describes LDC's own inline assembly syntax, which supports all targets but is no longer recommended. cheers, Oh!! We can use pure GCC syntax? That's sweet as there will be a lot more sources and people knowing how to use it! I already test it and it works!!! Thanks a lot for your help!!! |