assembly
Here are 2,885 public repositories matching this topic...
constgrep is slow
The constgrep
tool could probably be a bit faster. I'm not sure what's making it so slow at the moment. It shouldn't take ~2 seconds to look up a value.
$ time constgrep EPERM
#define EPERM 1
constgrep EPERM 1.12s user 0.43s system 88% cpu 1.751 total
-
Updated
May 9, 2020 - Python
-
Updated
Oct 4, 2019
The default documentation URL points to github.com. Doing this in VS2017 results in a message from github that internet explorer is an unsupported browser.
Workaround is to use local storage/clone of the wiki.
-
Updated
May 30, 2020 - Assembly
I haven't started work yet, but I wanted to mention that there is one more conan-related project for XMake I want to do which is called a "Build Helper".
https://docs.conan.io/en/latest/reference/build_helpers.html
The documentation for the CMake helper provides the justification here:
https://docs.conan.io/en/latest/reference/build_helpers/cmake.html
In summary, helpers make the Con
-
Updated
Jul 15, 2020
RETURN
pseudo-instruction currently accepts only constant values.
RETURN
should accept general-purpose registers for functions with integer or pointer return type. Lower toSTORE.RESULT
for Go and toMOV[ZX/SX](rax/eax, reg)
for other ABIsRETURN
should accept xmm registers for functions with floating-point return type. Lower toSTORE.RESULT
for Go and toMOVSS/MOVSD(xmm0, xmmN)
-
Updated
Jul 5, 2020 - Java
Consider porting existing PeachPy Go projects to avo
. At a minimum this would be really valuable feedback and system-level testing for avo
. These could be committed to the avo
examples directory or potentially committed back to the original repos if their maintainers are interested.
Repository | Description | Stars |
---|---|---|
[Yawning/chacha20 ](https://github.com/Yawning/chacha20 |
In-place relocation is convenient for assembly programmers but a more robust solution would be the traditional relocation tables found in other executable formats like ELF. Adding this would be convenient for C programs as well and would help us simplify the compiler.
- Add a new KEXC header which points to a relocation table, simply a list of program-relative addresses at which additional pro
-
Updated
Jan 26, 2018 - Pascal
-
Updated
Jul 12, 2020
-
Updated
May 29, 2020 - C++
A good example is ConfuserEx's anti tamper.
Just loading and saving the file with dnlib will remove the extra section injected by ConfuserEx and the assembly cannot be run or deobfuscated any further.
-
Updated
Feb 8, 2020
It would be good to have some (at least 3-5) tutorials that teach new users what LIKWID can do and how to use it properly. From my experience as a user and FOSS developer, tutorials like deal.ii's are good thing to have. In that case we have first 5 that has to be read in a sequence by users, and then things start to branch off by t
Achievements
(This is a draft)
- Add various listeners for achievements (See VaultCompleteListener.java for example)
It would look something like that:
// Handle division by zero error
user.getStats().addToStringSet("achievements", "divis
-
Updated
Feb 27, 2019 - Python
-
Updated
Jun 25, 2019 - Assembly
I haven't seen any tutorials related to working with SGDK's 3D capabilities (rendering 3d shapes with the Bitmap engine and working with various Maths3D functions). I've tried taking a look at the built-in cube demo, but there are several things that the demo alone can't really address, especially with lack of detailed comments. I found myself asking questions like "So is that checkerboard dither
Improve this page
Add a description, image, and links to the assembly topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the assembly topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
No.
Describe the solution you'd like
I'd like the source code to be automatically clang-formatted according to my settings anytime the code is compiled. That is, don't require me to use the contextual menu or keyboard shortcut to format the code. Just auto-format it; just like the code is auto-compiled too.
Well, ther