The asm tag has no wiki summary.
18
votes
9answers
1k views
Does OO, TDD, and Refactoring to Smaller Functions affect Speed of Code?
In Computer Science field, I have noticed a notable shift in thinking when it comes to programming. The advice as it stands now is
write smaller, more testable code
refactor existing code into ...
4
votes
2answers
505 views
Implementing non-fixed length array support in a compiler
I'm thinking of building a language for PIC microcontrollers. I want to be able to use non-fixed size arrays, like this:
Declare the variable as int[]
Wait for input from serial connection
Make the ...
3
votes
1answer
176 views
How to comply with the Java ASM License?
I am designing an open source Java library that I will likely release with an MIT license, and its sole dependency is the ASM dynamic bytecode injection library.
According to their license:
...
1
vote
1answer
247 views
How are I/O port addresses and data sent?
First of all, I'd like to say this is a hardware-level question, which is very closely related to the "in" and "out" command in x86 assembly.
I have searched for quite some time, but I still haven't ...
-3
votes
1answer
116 views
Would you get better performances by coding an application in C, then compile to JavaScript? [closed]
I am writing an interpreter for a functional programming language that is going to run in the browser. Needless to say, performance is the one and only concern in this application. Emscripten is an ...