The addressing tag has no wiki summary.
37
votes
5answers
966 views
How can a non-assigned string in Python have an address in memory?
Can someone explain this to me? So I've been playing with the id() command in python and came across this:
>>> id('cat')
5181152
>>> a = 'cat'
>>> b = 'cat'
>>> ...
6
votes
2answers
282 views
x86 and Memory Addressing
I've been reading up on memory models in an assembly book I picked up and I have a question or two. Let's say that the address bus has 32 lines, the data bus has 32 lines and the CPU is 32-bit (for ...
5
votes
3answers
229 views
how do addressing modes work on a physical level?
I'm trying to learn this basic thing about processors that should be taught in every CS department of every university. Yet i can't find it on the net (Google doesn't help) and i can't find it in my ...
3
votes
4answers
188 views
Applying an aggregate function over multiple different slices
I have a data array that contains some information about people and projects as such:
person_id | project_id | action | time
--------------------------------------
1 | 1 | w | ...
2
votes
1answer
79 views
Simpletron machine and indirect addressing
I recently made the Simpletron assignment
from the Deitel and Deitel textbook.
The Simpletron machine language has only one addressing mode which is direct addressing.
(That is, you have to specify ...
2
votes
3answers
387 views
Terms used for addressing modes. [intel 8085]
In the documentation of a processor I am working on it says :
Operand addressing modes available are implied, register, immediate, direct and register
indirect (using the BC, DE and HL ...
2
votes
4answers
234 views
addressing in assembler
there is something i can't digest. I'm learning some assembler and right now i'm at chapter with addressing. I understand the concept of brackets for dereferencing, but somehow when I see the usage of ...
2
votes
2answers
2k views
Find the address of a DLL in memory
I have just been getting into low level programming (reading/writing to memory that sort of thing) and have run into an issue i cannot find an answer to.
The piece of information i want to read from ...
1
vote
2answers
79 views
Assembler jump in Protected Mode with GDT
I am currently playing around with x86 Assember in order to sharpen my low-level programming skills :). Currently, I am facing a little problem with the addressing scheme in 32-Bit Protected Mode.
...
1
vote
2answers
157 views
8086 assembly: MOV part of a string into a variable
Assuming I have a string of ascii characters such as "652+346*779=", and I want to move some characters FROM this variable TO another variable...
Buffer is the string (in this case "652+346*779=")
...
1
vote
2answers
71 views
Address woes from Hacking: The Art of Exploitation
I bought this book recently titled: Hacking: The Art of Exploitation (2nd Edition) and it's been bugging me so much lately. Anyway, with one of the examples, firstprog.c :
#include <stdio.h>
...
1
vote
2answers
133 views
absolute addressing for runtime code replace in x86_64
I'm currently using some code replace scheme in 32 bit where the code wich is moved to another position reads variables and class pointer. Since x86_64 does not support absolute addressing i have ...
1
vote
1answer
58 views
Assembly Language Indirect Addressing
I am working through some indirect addressing problems and I am not sure how to properly count bytes. We are given this code:
.data
v1 db 9,7,5,3,1
v2 dw 0
v3 dw -1
v4 db '$'
mov dx,offset ...
1
vote
2answers
114 views
Concerning real mode physical memory addressing
Me and my friend were brainstorming about a question concerning physical memory addressing in real mode and we couldn't wrap our heads around it. Here goes.
In real mode 16 is multiplied to the ...
1
vote
2answers
596 views
Masm indirect addressing mode for MOV commmand
I've tried the following forms and masm doesnt like any of them:
mov byte [myVariable], al
mov byte ptr [myVariable], al
mov [byte myVariable], al
what am i missing? why cant i seem to use indirect ...
1
vote
2answers
1k views
Addressing in CSS in Flex: Buttons in RichTextEditor only?
I want to change the font characteristics for buttons in the toolbar of the RichTextEditor, but I want them to be different than other buttons in my application. Is there any way to do this with just ...
0
votes
0answers
10 views
Flex 4 Targeting Components that were created at run time
I have some components that are created at run time, I would like to execute functions in those components during certain parent events.
Problem is this only works with components I create before ...
0
votes
1answer
80 views
Flex 4 Printing by Adding dynamic items in a print area (AKA. how do I add dynamically named elements to another element on the fly)
I have a number of items I add to the stage dynamically.
These are called flexShapeXXX where xxx is typically a unique ID.
Now I have created a component to store them in for printing, that I can ...
0
votes
0answers
103 views
RIP-relative addressing on x86
I'm not really experienced with x86 assembler and try to debug a problem related to a bug in mach_inject.
The original code looks like this (function mach_inject in mach_inject.c):
#if ...
0
votes
2answers
113 views
PyCUDA Memory Addressing: Memory offset?
I've got a large chunk of generated data (A[i,j,k]) on the device, but I only need one 'slice' of A[i,:,:], and in regular CUDA this could be easily accomplished with some pointer arithmetic.
Can ...
0
votes
0answers
65 views
RAM acess and CPU interfacing
I have a question regarding how memory is addressed and interfaced to the processor.
Considering a 32 bit data bus, and if one need to access (a byte) data on location 0x3, what will be the address ...
0
votes
0answers
150 views
Memory Management - Calculating the whole system's physical address space
I am looking for how to calculate the whole system's physical address space. Here is an example.
On a simple paging system with a page table containing 512 entries of 16 bits (including a ...
0
votes
0answers
111 views
Can I choose RIP-relative or absolute addressing for different variables with gcc in x86-64
I write my own link script to put different variables in two different data sections (A & B).
A is linked to zero address;
B is linked near to code, and in high address space (higher than 4G, ...
0
votes
1answer
60 views
How'll the offset in these two cases be applied?
First of all I'm familiar with the concept of how negative numbers are presented by two's complement system and I know that when there's a jump instruction(short or near) the offset it contains will ...
0
votes
2answers
251 views
Addressing data using relative pointers (x86-32 assembler)
I'm writing in 32-bit x86 assembler, and I'm not quite sure how to address data that is always in the same relation to the code. Do I have to use EIP to calculate the absolute address, or is there a ...
0
votes
2answers
782 views
Cause PostBack and Call Event Fired By Server-Side Button (ASP.Net Button)
I have yet another strange need. I have a jQuery dialog that has a dynamic button (
My Button that will be "fired":
<asp:Button ID="RenewSubscriptionButton" runat="server" Visible="false" />
...
0
votes
2answers
423 views
WCF - remote service without using IIS - base address?
I'm trying to get my head around the addressing of WCF services.
We have a client-server setup where the server occasionally (maybe once a day) needs to push data to each client. I want to have a ...
0
votes
1answer
132 views
Application bundle on OS X does not work, file addressing problem
My application requires a XML file to work and it doesn't even start without the file. Why I bundle my app as a JAR file it works fine as long as the XML file is placed in the same directory as the ...
-2
votes
1answer
50 views
If n bits are available how will I implement unicast, multicast and broadcast in a shared medium? [closed]
If n bits are available how will I implement unicast, multicast and broadcast in a shared medium?