How can I see the microprocessor register values using Qt?
-
Hi Qt Geeks,
I would like to create an IDE for development in Assembly.
A panel will be to see the content of the registers.
Can I introduce assembler functions into the code in Qt or is there a library that allows using low-level functions (directly with the hardware)?
Thanks in Advance
-
Hi Qt Geeks,
I would like to create an IDE for development in Assembly.
A panel will be to see the content of the registers.
Can I introduce assembler functions into the code in Qt or is there a library that allows using low-level functions (directly with the hardware)?
Thanks in Advance
@grafenocarbono said in How can I see the microprocessor register values using Qt?:
Can I introduce assembler functions into the code in Qt
Qt has nothing to with this, it's just a C++ framework.
You can use inline assembler code in C++ or a stand alone assembler with assembler code files.