jtagonizer

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 5bdbf977007e9c52b171e979f0cbfeae1ec3090d
parent e213ea45107b880b73706e805f360d2b0a9291b3
Author: Brian Swetland <swetland@frotz.net>
Date:   Mon, 22 Sep 2014 19:13:58 -0700

doh. make u32 actually 32 bits wide (instead of 64)

Diffstat:
Mjtag-driver.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jtag-driver.h b/jtag-driver.h @@ -19,7 +19,7 @@ typedef unsigned char u8; typedef unsigned short u16; -typedef unsigned long u32; +typedef unsigned int u32; typedef struct JDRV JDRV;