Questions tagged [16-bit]

Referring to computer architecture with addresses and other data units 16 bits wide.

In computer architecture, 16-bit integers, memory addresses, or other data units are those that are at most 16 bits (2 octets) wide. Also, 16-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size.

414 questions
0
votes
1 answer

Saving as 16-bit .raww ("Raw image format (Word)") in ImageJ or MATLAB to import to DaVis

I have a set of 32-bit TIFFs that form a volume dataset (i.e. a stack). Using ImageJ, I'm downsampling them to 16-bit and exporting them as a raw file. The intention is that they will then be imported into LaVision's DaVis to perform digital volume…
Jordini
  • 1
  • 1
0
votes
2 answers

Using Quest Geo Solutions GIQ60 library on a 64bit machine

We are using Quest Geo Solution's Grid InQuest DLL (GIQ60.DLL) within an SQL Server Integration Services (SSIS) package. We have managed to use this without problems locally (32bit) by using tlbimp to create a .NET wrapper (interop). However, when…
Coolcoder
  • 4,036
  • 6
  • 28
  • 35
0
votes
2 answers

static array of pointers vs non static array of pointers

What are the differences between adding and not adding the static keyword in the following array of pointers declaration. static char *list[MAX] = { "Katrina", "Nigel", "Alistair", "Francesca", "Gustav" …
arcollector
  • 101
  • 5
0
votes
1 answer

I am having trouble creating a 16bit char in java

How can I create a variable character that can hold a four byte value? I am trying to write an program to encrypt messages in java, for fun. I figured out how to use RSA, and managed to write a program that will encrypt a message and save it to a…
0
votes
1 answer

Example from D book isn't working, odd error

All, I'm using Xamarin Studio 4.08 and Mono-D to program D with the DMD2 compiler. When I try to compile the following (from The D Programming Language - Alexandrescu, 2010- Page 10): import std.array; bool binarySearch(T)(T[] input, T value) { …
nerdenator
  • 1,265
  • 2
  • 18
  • 35
0
votes
1 answer

Generating a 16-bits per channel PNG file procedurally

Is there any way to generate a 16-bits per channel(RGBA) PNG file using D3DX11SaveTextureToFile? Or any version of DirectX, any image library(C++), any image format I tried to use the sample code…
0
votes
2 answers

16-bit status word perlvar

I was reading up on perlvar when i came across this - The status returned by the last pipe close, backtick (`` ) command, successful call to wait() or waitpid(), or from the system() operator. This is just the 16-bit status word returned by the…
Quest Monger
  • 8,252
  • 11
  • 37
  • 43
0
votes
2 answers

Options to Convert 16 bit Image

when i open a 16 bit image in tiff format, it opens up as a black image. The 16-bit tiff image only opens in the program ImageJ; however, it does not open in Preview. I am wondering what my options are now to view the format in an easier way that…
user1911720
  • 11
  • 2
  • 2
  • 5
0
votes
3 answers

What causes address error on 16 bit architecture?

I am working on some C code for a 16 bit microcontroller. When I debug the application on target I end up hitting an AddressError ISR. I read the data sheet and it says that this can happen if you try to read or write to a 16bit value that is…
PICyourBrain
  • 9,976
  • 26
  • 91
  • 136
0
votes
1 answer

Ask GCC to MOV arguments in registers before PUSHing them

I am writing a bit of 16-bit (pun intended) code in C++, compiling it with G++. More on the context I'm compiling in here: Force GCC to push arguments on the stack before calling function (using PUSH instruction) The problem I am facing now is…
Zuzu Corneliu
  • 1,594
  • 2
  • 15
  • 27
0
votes
1 answer

How to enable 16 bit applications on Windows 8?

I need to enabled 16 bit applications from an installer on windows 8. I found that windows a supports 16 bit applications, and this support can be enabled by Control Panel->16 Bit Application Support. I would like to enable this automatically on a…
Ben
  • 669
  • 8
  • 14
0
votes
1 answer

Open Watcom error cannot execute(wpp): No such file or directory*

So I'm trying to create a 16bit MSDOS applcation with Open Watcom FORTRAN. I created a new project and made a simple hello world cpp file but when I'm trying to build by hitting f4 it slams me in the face with the error: Error(E14): Cannot…
Jens Ackou
  • 151
  • 11
0
votes
1 answer

Assembly: String Input (word size) and Re-printing

I don't know what went wrong. I want to input string in WORD size and add a integer to the inputted value of string and reprint the results. I'm not really sure in the arithmetic operations since this is my first time in using many operations in a…
shriekyphantom
  • 143
  • 1
  • 4
  • 19
0
votes
1 answer

Thunking - Windows 7

I am trying to write a very simple thunk that can be used from 16bit FoxPro to ultimately call a 64bit shiny WCF client. I know I can't pass complex data types between them so I just want to pass a file name that data will be written to. Problem…
Jon H
  • 1,061
  • 4
  • 13
  • 32
0
votes
1 answer

Need a free thread-safe matrix math library that supports 16-bit integers (c++)

I need an alternative to the std library's matrix functions, preferably one that is fast and very portable. It needs to be thread safe, able to do operations like matrix multiplication, and it needs to support 16-bit integers. I looked at the "Basic…
Craw
  • 3
  • 1