Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged assembly
0
votes
901
views
1
answer
assembly - Does referencing constants without a dollar sign have a distinct meaning?
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)
assembly
0
votes
795
views
1
answer
assembly - "C variable type sizes are machine dependent." Is it really true? signed & unsigned numbers ;
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)
assembly
0
votes
741
views
1
answer
assembly - Interrupting instruction in the middle of execution
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)
assembly
0
votes
940
views
1
answer
assembly - How do 8-bit and 16-bit processors access more RAM with two registers?
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)
assembly
0
votes
948
views
1
answer
assembly - Displaying characters with DOS or BIOS
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)
assembly
0
votes
821
views
1
answer
assembly - Does using mix of pxor and xorps affect performance?
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)
assembly
0
votes
1.0k
views
1
answer
assembly - What is the difference between .word and .equ in MIPS?
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)
assembly
0
votes
1.7k
views
1
answer
assembly - 8086 random number generator (not just using the system time)?
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)
assembly
0
votes
1.0k
views
1
answer
assembly - dollar-terminated strings
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)
assembly
0
votes
903
views
1
answer
assembly - How to execute a call instruction with a 64-bit absolute address?
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)
assembly
0
votes
844
views
1
answer
assembly - OsDev syscall/sysret and sysenter/sysexit instructions enabling
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)
assembly
0
votes
805
views
1
answer
assembly - Creating a simple multiboot kernel loaded with grub2
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)
assembly
0
votes
1.1k
views
1
answer
assembly - How to move 128-bit immediates to XMM registers
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)
assembly
0
votes
908
views
1
answer
assembly - Is it possible to use 32 bits registers/instructions in real mode?
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)
assembly
0
votes
1.1k
views
1
answer
assembly - Use ld on 64-bit platform to generate 32-bit executable
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)
assembly
0
votes
840
views
1
answer
assembly - In what situation would the AVX2 gather instructions be faster than individually loading the data?
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)
assembly
0
votes
1.1k
views
1
answer
assembly - Greater than, less than equal, greater than equal in MIPS
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)
assembly
0
votes
981
views
1
answer
assembly - iOS ARM64 Syscalls
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)
assembly
0
votes
1.0k
views
1
answer
assembly - How to interpret x86 opcode map?
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)
assembly
0
votes
917
views
1
answer
assembly - Weird MIPS assembler behavior with jump (and link) instruction
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)
assembly
0
votes
952
views
1
answer
assembly - GCC inline assembler, mixing register sizes (x86)
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)
assembly
0
votes
760
views
1
answer
assembly - Get file size with stat syscall
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)
assembly
0
votes
848
views
1
answer
assembly - Are the data registers EAX, EBX, ECX and EDX interchangeable
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)
assembly
0
votes
810
views
1
answer
assembly - Which segment register is used by default?
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)
assembly
0
votes
939
views
1
answer
assembly - An efficient way to do basic 128 bit integer calculations in C++?
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)
assembly
0
votes
727
views
1
answer
assembly - Why doesn't RFO after retirement break memory ordering?
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)
assembly
0
votes
989
views
1
answer
assembly - Anyone knows what "mov edi,edi " does?
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)
assembly
0
votes
1.2k
views
1
answer
assembly - What does `dup (?)` mean in TASM?
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)
assembly
Page:
« prev
1
...
3
4
5
6
7
8
9
10
11
12
13
...
24
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] Css not loading on node.js generated link
[2] javascript - Why Google Sheets Crud/ search form is not working if has more than 5 columns?
[3] go - Why won't calibre read the metadata on a recreated .epub file?
[4] powershell - how to iterate each row of CSV data using ForEach?
[5] flex布局中当多个子元素的长度大于父元素如何显示滚动条?
[6] python 3.x - pyinstaller - No module named 'Backtrader'
[7] el-transfer右边数据一时渲染一时不渲染,怎么一回事?
[8] How does one apply a one way decrease in opacity along a curved line geometry in three.js?
[9] powerbi - standard architecture in power bi o business intelligence
[10] MYSQL basic conditional aggregation for same Columns
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...