AR-Ghodrati / SimpleAssemblyExamples

Some Simple Assembly Examples With C++ Tester Application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SimpleAssemblyExample

Some Simple Assembly Example With C++ Tester Application

Functions Included :

extern "C" {

    void BASIC(int arg0 , int arg1);
    int MUL7(int arg0);
    int FIND_PATTERN_1011(int arg0);
    void REVERSE(int* arg0 , int arg1);
    
    int Counter1bit(int Number , int RegSize);
    int DivisibilityCounter(int* Array, int ArraySize, int Value);
    int LinearSearch(int* Array, int ArraySize, int Value);
    void ReverseIntArray(int* Array, int ArraySize);
    
    int NormalFactorial(int arg0);
    int RecursiveFactorial(int arg0);
    
}

About

Some Simple Assembly Examples With C++ Tester Application


Languages

Language:Assembly 80.1%Language:C++ 14.3%Language:CMake 5.6%