Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged assembly

0 votes
944 views
1 answer
    During reading of an Intel manual book I came across the following: On processors that support Intel 64 architecture ... a 'canonical address'? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
856 views
1 answer
    Basically I am trying to simulate assembly code in C. Here is the C code: int main() { test(); main_next: ... -procedural goto in C? Thank you! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
812 views
1 answer
    I've been messing around with x86-16 assembly and running it with VirtualBox. For some reason when I read ... fault. It prints something like: See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
989 views
1 answer
    Is there any sequence of x86 instructions in real mode that will power off (not reboot) the machine? I have an ... mode or 64-bit long mode. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
945 views
1 answer
    I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come with integer ... best solution? Cheers! = ) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I have some gnu assembler code for the x86_64 architecture generated by a tool and there are these instructions: movq ... Where can I find them? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I'm exceptionally new to assembly. I only picked it up yesterday and I've looked through many examples and still ... it in my own way. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    Been googling this for a while but i can't find any documentation relating to this. I've been trying to ... me understand this? Thank you! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
720 views
1 answer
    For the sake of example, imagine I was building a virtual machine. I have a byte array and a while ... particular instruction is more important. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    In MIPS assembly, what is the benefit of using addiu over addi? Isn't addiu unsigned (and will ruin our calculations?) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
691 views
1 answer
    I've looked up Wikipedia for x86 backward compatibility in x86-x64 and it says: x86-64 is fully backwards compatible ... 32 bit in x86-x64. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
822 views
1 answer
    Just started learning x64 assembly and I have a question about functions, arguments, and the stack. As far as ... is it just a recommendation? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.3k views
1 answer
    I'm having trouble finding much in the way of information about the new XCode layout. How can I view the disassembly ... than just the C++ code? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
892 views
1 answer
    I just begin to study ARM assembly language, and am not clear about how to use MOV to transfer an ... range according to the specification? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    I have a NASM file and a C file. How do I call a function in the C file from the NASM file? How do ... function from the C file? Many Thanks DD See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    Is test eax, eax more efficient than cmp eax, 0? Is there any case that the test eax, eax is necessary ... eax, 0 doesn't fulfill requirement? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
803 views
1 answer
    In the following assembly code that I dumped out using objdump: lea 0x0(%esi,%eiz,1),%esi What is register ... does the preceding code mean? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
850 views
1 answer
    I've been trying to use this page as well as various other guides to figure out how to express very simple ... Thanks in advance for your help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
929 views
1 answer
    I always wondered what's the purpose of the rotate instructions some CPUs have (ROL, RCL on x86, for example ... added to the instructions set? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.5k views
1 answer
    I have the following asm code: ; int __stdcall wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR ... optional parameter, nBytes? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
920 views
1 answer
    I'm going through MSIL and noticing there are a lot of nop instructions in the MSIL. The MSDN article ... the question originally asked about.) See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
797 views
1 answer
    I'm not crazy, just reinventing the wheel :D I wrote boot-loaders, mouse & keyboard mini-drivers, mini OS ... I start editing my current BIOS? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I implemented the multiplication of two big integer in emu8086 with code as below : ; MULTIPLY N1 * N2 = RES ... ? Thanks for your advance :) See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
910 views
1 answer
    I was just wondering, is there any way in MIPS to store a summation of numbers as a string and later read them ... and so on. Is this possible? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
950 views
1 answer
    I am reading the ia-32 instruction format and found that ModR/M is one byte if required, but how to ... documents which explain the details? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    Is it possible to calculate result of multiplication without using instructions MUL, IMUL, SHL, SHR, LOOP, JMP in x86 assembly language? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
778 views
1 answer
    As the question suggests, I have to write a MASM program to convert an integer to binary. I have tried many ... : pop ebp _intToBin ENDP END See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
798 views
1 answer
    I want to store data in a large array with _mm256_stream_si256() called in a loop. As I understood, a ... the current thread currently holds. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...