The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
10 views

Suitable network for IPv4 address classes A, B, and C [closed]

From the five five classes, D and E are dedicated to special purposes and classes A, B and C are assigned for normal (Unicast) addressing purposes on IP internetworks. For what kind of networks where ...
0
votes
0answers
18 views

Understanding Little/Big Endian and Addressing

The context... I'm trying to convert bytes received from a certain device that uses modbus register sets. In my particular case, registers on the device each have two bytes and they are represented as ...
0
votes
4answers
68 views

C++ array accessing

let's say I have: int test[10]; on a 32bit machine. What if I do: int b = test[-1]; obviously that's a big no-no when it comes to access an array (out of bound) but what actually happens? Just ...
0
votes
0answers
31 views

How to use WS-Addressing with dynamic Java WS client

I'm currently developing a dynamic Java WS client, which does not require a WSDL at compile time, but parses a WSDL from arbitrary locations and uses the offered services with a dispatch request: ...
0
votes
1answer
42 views

MIPS label addressing?

This is all related, and I tried to piece it all together as logically as I could, so please bear with me. I'm really confused as to how to properly address labels. For example, in the following bit ...
1
vote
1answer
63 views

How do I avoid hard coding array index/indices within a loop in MIPS?

For example, $a0 is an index/pointer $a1 is the address of the array base I want to access each element of the array within a loop, perform an arithmetic operation to that element, then save it to ...
0
votes
1answer
184 views

How to get LBA(logical block addressing) of a file from MFT on NTFS file system?

I accessed the $MFT file and extracted file attributes. Given the file attributes from MFT, how to get a LBA of file from the MFT record on NTFS file system? To calcuate LBA, I know that cluster ...
0
votes
0answers
11 views

Alignment network needed for loads?

I came across this line - "In any case, an alignment network is needed for loads" while reading some stuff on Memory addressing in Computer Architectures and did not understand what it meant. Does ...
0
votes
0answers
31 views

Locating physical address of USB port

I need to locate the physical address of the debug port of my USB controller in Linux and Windows. The EHCI spec provides little information about this, and I have searched for hours on google trying ...
0
votes
0answers
51 views

lba read and write

I am trying to read and write to a bare hard drive by using LBA values via OSX. I do not care about file systems. I just want to write to the hard drive directly. If it is not possible via OSX I could ...
1
vote
0answers
252 views

PIE disabled. Absolute addressing not allowed in code signed PIE

I'm working with Xcode 4.5 with a deployment target of iOS 5.1 I'm getting the following warning when I compile my app in relation to two specific methods which have significantly increased in size. ...
1
vote
1answer
80 views

how to differentiate between memory (heap) - and stack- addresses

my question is: When I have something like this: lea rax, rbp - 8 // Maybe that's an int on my stack, because I have a local "int"-variable in my code. How does the CPU know, where the data is, ...
0
votes
1answer
53 views

about indirect addressing like %segreg:disp(base,index,scale),foo

movl $0x14,0x4(%rax,%rdx,1) meas %rax+%rdx*1+0x4 = $0x14(20) but: mov 0x0(,%rax,8),%rax which is base segment resgister ? what is this instuction meas?
1
vote
2answers
1k views

Call Activity method from adapter

Is it possible to call mathod that is defined in Activity from ListAdapter? (I want to make a Button in list's row and when this button is clicked it should perform the method, that is defined in ...
0
votes
1answer
76 views

Addressing in x86

I have got a problem with addressing in x86. Can someone tell me what this does: mov 4000(%ecx, %ebx, 4), %eax
6
votes
4answers
383 views

How to offload memory offset calculation from runtime in C/C++?

I am implementing a simple VM, and currently I am using runtime arithmetic to calculate individual program object addresses as offsets from base pointers. I asked a couple of questions on the subject ...
5
votes
3answers
2k views

MATLAB: extract submatrix with logical indexing

I'm looking for an elegant solution to this very simple problem in MATLAB. Suppose I have a matrix >> M = magic(5) M = 17 24 1 8 15 23 5 7 14 16 4 ...
0
votes
1answer
194 views

CUDA shared memory addressing

I understand that when I declare a shared memory array in a kernel, the same sized array is declared by all the threads. A code like __shared__ int s[5]; will create a 20 byte array in each thread. ...
1
vote
3answers
730 views

C++ hashing: Open addressing and Chaining

For Chaining: Can someone please explain this concept to me and provide me a theory example and a simple code one? I get the idea of "Each table location points to a linked list (chain) of items ...
0
votes
1answer
81 views

Addressing modes for static and local variables

Why are static variables addressed directly while locals are addressed indirectly? I cannot see where the indirection comes from for locals!
0
votes
2answers
163 views

Memory addressing in assembly / multitasking

I understand how programs in machine code can load values from memory in to registers, perform jumps, or store values in registers to memory, but I don't understand how this works for multiple ...
4
votes
5answers
248 views

how does pointer adressing work in c++

I am confused about pointer pointing to address of variable it points to last two bytes how does this work #include <iostream> using namespace std; int main() { int i = 1; short *j ...
1
vote
2answers
437 views

Determining the number of address lines and RAM word size using C

Can anyone please let me know how to deterimine the number of address lines in a processor using C ? This can't be equal to size of the processor registers since the number of address lines may be ...
0
votes
1answer
82 views

ip addressing for Nth computers

the question is, calculate these information: "ip subnet zero, first ip, last ip, broadcast, ip subnet mask" for a Class B IP (172.16.0.0/16) for X number of PCs, for example, for 27811 computers... ...
2
votes
1answer
305 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 ...
5
votes
2answers
1k 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. ...
0
votes
1answer
42 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 ...
1
vote
2answers
1k 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=") ...
0
votes
2answers
366 views

Address woes from Hacking: The Art of Exploitation [closed]

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> ...
6
votes
2answers
494 views

Absolute addressing for runtime code replacement in x86_64

I'm currently using some code replace scheme in 32 bit where the code which is moved to another position, reads variables and a class pointer. Since x86_64 does not support absolute addressing I have ...
0
votes
1answer
403 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 ...
1
vote
1answer
238 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 ...
0
votes
0answers
225 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 ...
41
votes
5answers
1k 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' >>> ...
2
votes
3answers
748 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 ...
0
votes
2answers
185 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 ...
1
vote
2answers
171 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 ...
0
votes
0answers
103 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 ...
1
vote
0answers
201 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, ...
-2
votes
1answer
59 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?
0
votes
2answers
509 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 ...
5
votes
3answers
392 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 ...
0
votes
2answers
1k 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
591 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 ...
6
votes
2answers
594 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 ...
0
votes
1answer
160 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
4answers
494 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 ...
1
vote
2answers
1k 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 ...
3
votes
2answers
3k 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 ...