Assembly
An assembly language is a low-level language for programming computers.
Application
Any
Platform
Any
License
Any
This is a complete list of “Hello World!” programs written in more than 300 existing programming languages including Assembly language, Low-level, High-level, Object Oriented, Document formats, Page...
Occasionally you may want to access internal classes and their members found in one assembly from code in a separate assembly. The 'internal' modifier prevents this type of access. This restriction...
In this article I basically focus on how to write ‘if-then’ logic in assembly. Below a sample program code is provided which uses simple ‘if-then’ logic. This will give you some idea about how to...
In this article you understand basic instructions used in writing assembly language for a PIC16F84A microcontroller using a sample program written in assembly. Though it is not a complicated program...
This article describes a method of keeping version attributes for multiple assemblies in a product in sync for releases by splitting AssemblyInfo.cs into multiple files.
This article discusses the PowerPC ABI for 64-bit ELF (UNIX-like) systems and how to write and call functions using it. This is helpful for writing 64-bit programs for the POWER5 and other...
The POWER5 processor is a 64-bit workhorse used in a variety of settings. Part 1 of this Assembly language for Power Architecture series is an introduction to assembly language concepts and the...
Webpart post build .NET automation for Sharepoint,
which describes a technique to automate the application pool refresh, also enables the dll created to be added to the global assembly cache.
While looking for the use of satellite assemblies, I came across many examples. But, when I tried to run them, most of them did not fulfill my expectations from a satellite assembly. In this article,...
Most programmers shy away from Assembler (or assembly language). People tend to consider it as a very difficult language to understand and use. Moreover, anyone who knows how to use it is tended to...
This article presents a Visual C++ assembly with a custom configuration handler that makes achieving reloadable configuration information much easier.
One of the highlights of .Net and its Common Language Runtime (CLR) is its support for metadata. What does it actually mean is that with each assembly (.exe or .dll), .Net compilers store information...
Here is an example of how to use AMD and Intel's MMX
technologies to increase performance. Of course, these
optimizations cannot always be applied but I hope they can
still be useful. In this...
Inline assembly to speed up C++ code. Replacing double
sin(double), and double cos(double). This example will try take
use of the x86's fsincos command, which calcuales the sin and
the cos of a...