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
1.0k views
1 answer
    Can someone explain why this code: #include <stdio.h> int main() { return 0; } when compiled with tcc using ... executable using TCC 0.9.26. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I'm in 32-bit protected mode running at current privilege level (CPL=0). I'm trying to enter v8086 mode by ... : qemu-system-i386 -fda v86.bin See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I was wondering if it is possible to decode x86-64 instructions in reverse? I need this for a runtime ... do this by reverse decoding. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.7k views
1 answer
    I'm new to this forum. I have a little experience with high-level languages (really little). Nearly one month ago I ... address (or does it?) ?? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    Function parameter is allocated with at least 4 bytes via push/pop if they are allocated in stack on x86. This ... [esp+3], para4 call func See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    Hi i am new in avr asm programming,in the example below, i have few questions: 1) Is it label: 8 bit or ... db "Hello world", 0 lpm Thanks. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.6k views
1 answer
    So I have been doing an assembly tutorial, and I got stuck in the very beginning. Project name: asmtut.s The ... help me what could cause this? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I have written an Android app. It uses a main C-code module and a linked-in C-code module. Now I want ... module. Anyone have a simple example? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
918 views
1 answer
    As far as I know, x86 assembly code is very much constrained by the limited amount of registers. When I learnt ... when compiling a .so-file? 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 looking to shift a register bits n times to the left specified with another register. For example, something ... not known at assemble-time? 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 looking at some compiler output for a MIPS platform and struggling to understand how a function returns and ... executed after the jump?! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    For example, I'd like to write something like 'a' instead of 0x61 like I can in C. The manual mentions them ... I'm not sure I understood. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
949 views
1 answer
    I am a beginner in assembly and This is a code that I designed to convert from binary and to gray, and ... but it is affecting the output. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I want to make Linux just take 1 keystroke from keyboard using sys_read, but sys_read just wait until i pressed ... to 8 input from keyboard. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    As you know we have below Shift instructions in SIMD SSE: PSLL(W-D-Q) and PSRL(W-D-Q) There's no ... vectors of 8bit values (single bytes)? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
951 views
1 answer
    I'm facing a weird issue, somewhat similar to this. I have a Windows Phone 8 native DLL project, mostly C+ ... device; that could be the reason. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I want to create a macro like the following: .altmacro .macro assert_eq a, b=%eax LOCAL ok #... .endm To be used ... use %? GAS version: 2.23.52 See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I am tasked to convert my assembly program which uses NASM to GAS. Unfortunately there are lots of mismatched ... this statement min resw 1 See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I've been having the strangest problem. In x86 assembly, the 32 bit registers (eax, ebx, etc.) have been ... 8 bit ones, in ANY situation? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
992 views
1 answer
    I need to generate 5 random numbers, for that purpose i used the interrupt of clock: mov ah,2ch int ... problem using interrupts please help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    This is LC3 Assembly code I am working with .ORIG x3000 LOOP LDI R0, KBSR BRzp LOOP From LC3 Assembly, ... has received a new character. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
954 views
1 answer
    I don't know x86 ASM very well, but I'm rather comfortable with SHARP-z80, and I know by experience that ... is affected by surrounding C code. 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 trying to write a decoder stub and I'm running into a restriction on 0xFF as a bad character. I'm using ... in my machine code are: 00 FF See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
953 views
1 answer
    I am asking this because I am trying to implement interrupts in my toy kernel. So, I know that when an ... not sure where else I should. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
920 views
1 answer
    So the lw instruction is in the following format: lw RegDest, Offset(RegSource). Why does the second argument take ... e. only register source)? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    This question was originally posed for SSE2 here. Since every single algorithm overlapped with ARMv7a+NEON's ... into WebAssembly SIMD. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
996 views
1 answer
    I'm trying to write code to do two things: return a 1 to register r2 if my value is presentable as a constant ... , 0x3fc, 0x100, 0xff, 0 END See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    I am trying to write an assembly program using the 8086 processor that will find the cube root of a number. ... ; exit ret main ENDP END See Question&Answers more detail:os...
asked Oct 24, 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

...