Alright, I am just Reading the begginining of some Assembly Tutorials, that language is insane. It makes completely little sense. I dont got some of the ways I would be able to hack stuff with this Language, doesn't look to execiting, I think I might just blow it away and stick with C++, because C++ is Way Better. Any opinions.
Take a look
ORG 100h ; this directive required for a simple 1 segment .com program.
MOV AX, 0B800h ; set AX to hexadecimal value of B800h.
MOV DS, AX ; copy value of AX to DS.
MOV CL, 'A' ; set CL to ASCII code of 'A', it is 41h.
MOV CH, 1101_1111b ; set CH to binary value.
MOV BX, 15Eh ; set BX to 15Eh.
MOV [BX], CX ; copy contents of CX to memory at B800:015E
RET ; returns to operating system.
Makes no sense.
Thats why I tell you dont waste your time with ASM, its a waste of time. Just use C++, if you think C++ is hard, you wont have A CLUE what ASM does, its all about memory, telling where the segments go and registers, makes no sense of how you need to know where it goes in memory, All I know is it gets in its damn place and stays there, and if it doesnt then idk. I dont know if Cypher knows Assembly fully/half or anything, but its a hard language, from this perspective, C++ is EASY.