Background:-
I am trying to make a compiled programming language that uses a python script to generate assembly, assemble it, link it and output an executable for Windows.
The python code generation is good, but it uses C libraries to link the assembly, but I want to create the project more portable and smaller in size.
Hope anyone can guide me through assembly interrupts for input and output operations(Like printf and scanf in C), as the ones on the internet are all about 16-bit interrupts or are for linux.
Thanks in advance!!