/SimpleAssemblyExamples

Some Simple Assembly Examples With C++ Tester Application

Primary LanguageAssembly

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);
    
}