Problem I returned to study assembly language. And this is actually my first function written in Yasm. Implementing this function […]
Tag: assembly
x86 assembly function that determines whether an array is continuous
Problem I wrote an x86 assembly function using MASM that tests for whether or not an array is continuous. That […]
String length calculation implementation in Assembly (NASM)
Problem I just made a working implementation of calculating a string’s length, but I’m not exactly sure it’s the most […]
Non-recursive filter to smoothen saw tooth wave
Problem I’m currently writing some of my first assembly code for a new project, I am applying a small non-recursive […]
x86 assembly method that mimics strcat
Problem I’m trying to learn x86 assembly and hopefully move on to projects of the scope that more than one […]
Printing a string in NASM Win16 Assembly
Problem A small script that simply prints a given string. It’s an improved snippet that combines some recommendations given in […]
fasm convert hex byte to binary string
Problem This fasm x64 (Linux) code seems very crude and repetitive, but it gets the job done. How could I […]
A fast generator of palindrome dates in chronological order
Problem 02/02/2020 is a palindrome day because reading the date left-to-right or right-to-left still refers to the same calendar date. […]
Sum two vectors in x86 assembly
Problem I recently made a program with C++ and ASM. Can anyone help me make this code a more efficient […]
Fibonacci Sequence using Recursion with Memoisation
Problem File fibonacci.aec: syntax GAS ;We are, of course, targeting GNU Assembler here, rather than FlatAssembler, to be compatible with […]