Sandboxie adds full 64-bit protection, improves compatibility

Sandboxie 4.02 is the latest edition of the powerful shareware sandbox, which allows you to run programs in an isolated environment...

Update for Windows 8 for x64-based Systems (KB2851998)

Install this update to resolve issues in Windows. For a complete listing of the issues that are included in this update, see the...

Latest Everything Desktop Search beta build introduces 64-bit version

The desktop search engine Everything has been around since 2008. It may come as a surprise that the most recent stable version of the...

June 2013 Security Release ISO Image

This DVD5 ISO image file contains the security updates for Windows released on Windows Update on June 11, 2013. The image does not...

New boot firmware a step toward 64-bit Windows RT

A standards organization has created a boot environment for tablets and PCs that could potentially run a 64-bit version of Windows RT.

How to Install VMware vSphere vCenter Server 5.1.0b on Windows Server 2003 R2 X64 SP2

In this video we will install VMware vSphere vCenter Server 5.1.0b using the Simple Install method on Windows Server 2003 R2 X64 SP2

x64 Assembly and C++ Tutorial 61: AVX Negate 128bpp Image

Big thank you to all who've sent in Imogen plugins, they're excellent, Keep em' coming folks! This tutorial we'll look at some of the...

x64 Assembly and C++ Tutorial 60: C++ Negate 128bpp Image

In this tute we'll look at coding a C++ algorithm to negate a 128bpp image. This will be a benchmark to beat for the ASM versions we'll...

Kali Linux 64bit In VMware - Installation Walkthrough / How-to

The purpose of this video is to demonstrate a basic installation of Kali Linux from Offensive Security in a new Virtual Machine guest...

Installing the Java Plugin for 64bit Firefox on CentOS 6.4

Today, I had to install the Java plugin for 64bit Firefox on CentOS 6.4. The procedure wasn’t too bad, but it wasn’t exactly...

Linux x64 Assembly Tutorial 4: Passing Parameters and Coding

In this tute we'll get to coding some little ASM algorithms. First we have to look at how parameters will be passed from C++.

Linux x64 Assembly Tutorial 2: Bits, Bytes and Registers

Today we'll look at integer data types, bits, bytes, words and all that. We'll also look at the general purpose register set. I didn't...

64-bit Technology News

x64 Assembly and C++ Tutorial 56: SSE Comparisons that Set rFlags

Start64!In this tutorial we're looking at comparison instructions that compare SSE registers but set the x86 flags register. These allow us to compare the lowest singles or doubles in SSE registers and then jump using the x86 conditional jumps or perform conditional moves.

x64 Assembly and C++ Tutorial 54: SSE Moving Sign Masks

Start64!Today we'll look at three instructions, MOVMSKPS, MOVMSKPD and PMOVMSKB. They move the signs of elements in SSE registers into an x86 register. They are especially useful after the SIMD comparison instructions.

In-depth: Windows x64 ABI: Stack frames

Start64!All of the disassembly I'll show you is from Visual Studio 2012 Express. Comments I make about MSVC are referring to that version as well. If you're following along at home with 2010, you won't see any differences with the compilation of my example code.

Pure Csharp x64 Assembler with native cpu execution tutorial

Start64!This pure C# program parses the almost-ML64-compatible x64 assembly-language listing generated by Microsoft Visual C++ 2010 (when configured to produce x64 assembly-language listing files), and forms corresponding x64 CPU byte code, and executes that byte code in a new thread. This dynamic generation and execution of x64 CPU byte code is similar to what the .NET Common Language Runtime (CLR) does during the Just-In-Time (JIT) compiling process and subsequent execution.

x64 Assembly and C++ Tutorial 53: Classes

Start64!Today's tute we'll explore how some of the facets of Object Oriented C++ work. It's nothing like it seems. The information in this tutorial may not be immediately useful but it's actually very handy. There is a concept called AoS (Array of Structures) versus SoA (Structure of Arrays), to get maximum speed from our SIMD code sometimes we need the data organized in a special way, this type of knowledge (apart from being interesting) is invaluable when we need complete control over these types of things.

NetApp: Converting 32bit to 64bit aggr

Start64!This is a demo of how to convert a 32bit aggr to a 64bit aggr in NetApps Data Ontap system.

 

Linaro Android, ARMv8(64bit) and big.LITTLE Mini Summits to be Held at LCE 12 Copenhagen

Start64!Linaro Connect (LCE 12) will take place at the Bella Center in Copenhagen Denmark on 29 Oct to 2 Nov 2012. Registration for this event is now open and those who will be attending are encouraged to register earlier. In addition to the regular track sessions—Android, Graphics and multimedia, Kernel, Platform (Ubuntu and generic Linux), Power, QA/Infrastructure, Tools, Training and Validation/LAVA—this Linaro Connect event in Copenhagen will host three (3) mini summits.


64-bit Software for Windows 8 64-bit

64-bit Software for
Windows 8 64-bit

64-bit Codec

64-bit Codec

Install: Info, Help, Apps

Install: Info, Help, Apps


Early ARM 64-bit Prototype Servers Could Come by Year End

Start64!Early prototype 64-bit ARM servers could be available for testing purposes by the end of this year or possibly at the latest by the middle of next year, ARM said on Monday.  ARM will try to make inexpensive 64-bit server hardware available by working with partner Applied Micro Circuits, which has licensed the chip designer's 64-bit ARMv8 architecture, said Ian Ferguson, director of server systems and ecosystem at ARM.

Register Today For Our Win7, 64-bit App Webinar

Start64!Join Experts Exchange and systems management and admin virtuoso Darwin on September 13th from 11am- 12pm PDT for a Windows 7 and 64-bit app webinar. Darwin will present an overview of WOW64 design and outline problem areas for managing application files and registry settings. The session includes walkthroughs using scripting and shell extension toolkit that makes production script adaptation effortless for shell scripting. In this hour-long presentation, Darwin will discuss:

Analyst: ARM's 64-bit architecture is "clean and elegant"

Start64!Last October, ARM disclosed technical details about its new v8 architecture - which is the first to include a 64-bit instruction set. The next-gen architecture is expected to significantly extend the reach of ARM processors in the lucrative server market, which is currently dominated by x86 chips.

Use 64 bit ActiveX component from a .NET assembly

Start64!I've been using the ADN utilities, which include some ActiveX controls. Now I'm migrating my project to x64 OS and have downloaded the 64 bit version of the controls, however I cannot place them on my Form in Visual Studio.

ARM strikes strategic partnership with TSMC over 64-bit FinFET processors

Start64!TSMC and ARM announced today that they will extend their existing collaboration beyond 20nm fabrication to deliver ARM-based processors that use FinFET transistors.

x64 Assembly and C++ Tutorial 52: Structures

Start64!We'll detour (sort of, the final demo uses SSE2 and 3) from SSE instructions and examine structures today. Structures in ASM are almost the same as their C++ counterparts but there's a few little tricks to look at before C++ and ASM will play together.

ARM and TSMC Sign 64-Bit Deal, Intel's Last Advantage Gone

Start64!The ARM v8 architecture has already been acknowledged as the great accomplishment that will pull the architecture out of the confines of the mobile market, and now we know who will help ARM Holding the most: TSMC.

x64 Assembly and C++ Tutorial 50: SSE Conversion Instructions

Start64!The conversion instructions cast and convert data from integers to floats and copy from SSE to x86 or MMX registers. There's many of them so we'll only look at a couple in examples. They are mostly pretty basic. We'll also look at how to set the rounding function in MXCSR and what C++ does when we cast floats.

Page 2 of 45

   eXTReMe Tracker