From 79b86cf9bd12c4a7c8cf56927d8359b9e366bfa4 Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Tue, 18 Dec 2018 09:25:05 +0100 Subject: [PATCH] fix fasc-n value of 1 relates #177 --- tools/fasc.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fasc.pl b/tools/fasc.pl index 3a761fa..9ba75dd 100644 --- a/tools/fasc.pl +++ b/tools/fasc.pl @@ -38,7 +38,7 @@ use Bit::Vector; my %encoding = ( 0 => "00001", - 1 => "10000", + 1 => "00010", 2 => "00100", 3 => "00111", 4 => "01000",