From 5360ba503085863f879fc14e7f42c8f33174e31d Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Mon, 22 Jul 2002 21:19:58 +0000 Subject: [PATCH] Added missing tap_state_get_trst() function. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@69 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/src/tap/state.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jtag/src/tap/state.c b/jtag/src/tap/state.c index e2c3ebdc..c65448a8 100644 --- a/jtag/src/tap/state.c +++ b/jtag/src/tap/state.c @@ -61,6 +61,12 @@ tap_state_set_trst( int new_trst ) return state; } +int +tap_state_get_trst( void ) +{ + return trst; +} + int tap_state_clock( int tms ) {