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
832 views
1 answer
    I wrote: mov 60, %rax GNU as accepted it, although I should have written mov $60, %rax Is there any difference between two such calls? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
726 views
1 answer
    I've been told that C types are machine dependent. Today I wanted to verify it. void legacyTypes() { /* character ... 64-bit & 32-bit machine? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
684 views
1 answer
    Suppose that CPU is running an assembly instruction, say, FOO that will be executed in several clocks ( ... types of interrupts' prioritization? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
875 views
1 answer
    Something that has always confused me is how 8-bit computers access more than 256 bytes of RAM. I know that it must use ... : mov a, [x] ??? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
853 views
1 answer
    Looking through Ralph Brown's interrupt list, I discovered that there are many different ways to output text ... I choose between them? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
719 views
1 answer
    I've come across a fast CRC computation using PCLMULQDQ implementation. I see, that guys mix pxor and xorps ... coding style, for fun? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
935 views
1 answer
    I think both do about the same: Variable declaration and initialization. Can you please elaborate? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.6k views
1 answer
    I am using assembly 8086emu and I need a numbers generator for 8 numbers. I tried to use this piece of ... Math.random() function in emu8086. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
940 views
1 answer
    In my assembly language class, our first assignment was to write a program to print out a simple dollar-terminated ... it using a google search. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
839 views
1 answer
    I am trying to call a function - that should have an absolute address when compiled and linked - from machine ... ignored when MAP_FIXED is set. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
776 views
1 answer
    I am building an 32 bit OS in assembly. I have setup the IDT and I am handling program interruptus ... sysenter instructions! (No duplication) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
741 views
1 answer
    I'm trying to follow the instructions here to build a simple OS kernel: http://mikeos.sourceforge.net/write-your- ... -felf32 seems to work... See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    There already is a question on this, but it was closed as "ambiguous" so I'm opening a new one - I've ... a 128-bit immediate (constant) value? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
839 views
1 answer
    I'm confused about a simple assembly problem when studying some simple os source code. In this website: http ... /instructions in real mode? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
976 views
1 answer
    I wrote an assembly that is assemble with: $as --32 -o hello.o hello.s Then I tried to generate an executable ... from my 32-bit shared object? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
771 views
1 answer
    I have been investigating the use of the new gather instructions of the AVX2 instruction set. Specifically, I decided ... wants to try this out. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    Given two registers $s0, $s1, how can I convert the following pseudocode into MIPS assembly language using only the slt ( ... ) { go to label3 } See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
889 views
1 answer
    I am learning more about shellcode and making syscalls in arm64 on iOS devices. The device I am testing on is ... why this code was emitted. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
929 views
1 answer
    In looking at an x86 opcode map such as this: http://www.mlsite.net/8086/#tbl_map1 It defines mappings, for ... that) would be super helpful. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
849 views
1 answer
    So, we're studying MIPS architecture at school and we're implementing a MIPS32 architecture. I thought I'd ... places with the last instruction? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
861 views
1 answer
    Does anyone know how I can get rid of the following assembler warning? Code is x86, 32 bit: int test (int ... allocation job up to the compiler. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
681 views
1 answer
    I'm trying to get file size wit stat syscall with assembly (nasm): section .data encodeFile db "/home/user/file ... STAT.st_size] there is 0 too See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
787 views
1 answer
    I'm stepping into the world of Assembly Language Programming. I'm trying to understand everything found on: ... think that is Linux environment See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
733 views
1 answer
    I am studying computer architecture from the Intel Manual. The thing that I understand is that the instructions that we ... for mov eax, [edi]? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
850 views
1 answer
    Some years ago I needed a way to do some basic 128 bit integer math with Cuda: 128 bit integer on cuda?. ... and bit shifting in 128 bits? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
661 views
1 answer
    I thought that I understood how L1D write miss is handled, but thinking carefully about it made me ... maintain correct memory ordering? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
894 views
1 answer
    69A8AB13 int 3 69A8AB14 int 3 69A8AB15 mov edi,edi 69A8AB17 push ebp 69A8AB18 mov ebp,esp mov edi,edi doesn't make sense for me,what's it for? 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 this code here, but I'm unfamiliar with the syntax. STACK16_SIZE = 100h stack16 db STACK16_SIZE dup (?) I ... dup mean in TASM, exactly? 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

...