Questions tagged [addressing]

153 questions
0
votes
0 answers

empty tag in Xquery - addressing

I have a basic question but I did not manage to find an answer. I am new here, new to SQL and new to XML so I hope this level of question is not too basic. I have an XML empty tags but want to address them in my select in sql:
0
votes
0 answers

swapping in and out a process many a times gives different address

#include int main() { int a; printf(" %u ",&a); return 0; } When we associate '&' with a variable the address we get is the virtual address when we run the program on a system with virtual memory. Then why swapping in and out a…
0
votes
1 answer

Addressing resource files in C#

I've added my file into resources with right click -> existing item. Now I want to copy the added file into another directory like this: File.Copy(@"I don't know", @"C:\Users\user-1\Desktop\", true); I don't know what I have to write in @"I don't…
Leviathan
  • 31
  • 1
  • 9
0
votes
1 answer

Does GDB support displaying contents as pointer typed values?

Windbg has a dpp command, which interprets values in memory as pointers and prints out the pointer is pointing to. Shown below: My questions is, does GDB has similar functionality?
Troskyvs
  • 7,537
  • 7
  • 47
  • 115
0
votes
1 answer

What Data Type is an Excel Cell Reference (VBA)?

What data type is an Excel cell reference? I have constructed strings representing cell references (e.g. "G12", "AW12", etc.), and want to use them to create named ranges; Dim UpperLeftHandCornerOfRangeCellReference As…
PBG
  • 9
  • 3
  • 8
0
votes
1 answer

How to addressing package view on Laravel 5.1

I have modules folder in root directory Laravel 5.1. and located a package as test1 in this. Also I have file view1.blade.php in this directory resources/views/view1.blade.php How to can access in View1.blade.php from this…
paranoid
  • 6,799
  • 19
  • 49
  • 86
0
votes
2 answers

Why would you add to an address?

I'm in a data structures course, our midterm is coming up and our practice midterm asks if each line is valid syntax: int num = 10; int *p, *q; p = # q = p; //valid *p = q; //invalid, int* cannot be assigned to int (*p)++; //valid &num+1;…
Skathix
  • 278
  • 1
  • 3
  • 14
0
votes
1 answer

Yasm and MSVC 2013 linker: RIP on Win64

I am reading "Introduction to 64 Bit Intel Assembly Language Programming for Linux" and porting the code to Windows using Yasm and MS Visual Studio 2013 for learning reasons. At chapter 7, there is an example of switch: global …
lemoce
  • 168
  • 1
  • 5
0
votes
1 answer

"CMPL" -> Based mode into indirect addressing mode

So I'm working on this file. I have to transform complex addressing mode into simple addressing mode. I've managed to do movl $0, 0(%esp) into addl $0, %esp movl $0, (%esp) addl $-0, %esp works just fine, for all cases. However I can't do the…
Anja Lube
  • 15
  • 2
0
votes
2 answers

How does register size affect processor performance?

I've been flying around the internet today trying to wrap my head around this topic. So here's what I understood so far. So the bigger the register size the bigger the instructions a processor can handle? Quote: The size of the registers, which is…
Omar Sharaki
  • 360
  • 9
  • 34
0
votes
2 answers

How to get the correct values from this Modbus address?

I have a MOXA Modbus TCP module (M-4210 in combination with the NA-4010 networking module that also has some other modules attached) that works as a 2-channel analog output, each with voltages from 0 to 10 Volts. In my C# application I need to get…
Rob
  • 11,492
  • 14
  • 59
  • 94
0
votes
1 answer

data indirect addressing and adding 16bit numbers AVR assembly

I have a question that begins with this: .dseg .org 0x200 value1: .byte 2 value2: .byte 2 res: .byte 2 Im supposed to compute the sum of res = value1 + value2 0x200 value1: 0xCD 0x201 oxAB 0x202 value2: 0x34 0x203 0x12 0x204…
0
votes
1 answer

How to enable WS-A Addressing on my JAX-WS generated client code

I would like to access a third party websevice using a Java client that I generated with JAX-WS wsimport, based on the WSDL provided (I am using a Maven plugin). For quite a while I was unable to retrieve a useful response, not in the Java client…
Kjeld
  • 444
  • 4
  • 14
0
votes
1 answer

Translate the following MIPS instructions into 32 bit instructions

I'm trying to translate the following MIPS instructions into 32 bit machine code (using Big-endian): swc1 $f1 8($t0) What I did was: 111001 00001 01000 00001000 I'm only sure about the translation of swc1, but not the others. I've googled a lot but…
HoneyWine
  • 177
  • 1
  • 4
  • 18
0
votes
3 answers

Basics about IP addressing

let's say that we have a router with address: 172.31.219.33/27 from this I can tell several things: Subnet mask: 255.255.255.224 Broadcast address (here I am not sure if last digit should 64 or 65 - see later): 172.31.219.64 Last host address…
Superian007
  • 395
  • 7
  • 25