summaryrefslogblamecommitdiff
path: root/csim/util.c
blob: ef0ae327cf75d4a7d29341f44c7dae36e6b7604c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                        
                          































                                                 
/*
	Système Digital
	2013-2014
	Alex AUVOLAT

	util.c	Various utility functions used elsewhere
*/


#include "sim.h"

int pow2(int exp) {
	return (1 << exp);
}

t_value read_bool(FILE *stream, t_value *mask) {
	t_value r = 0;
	t_value pow = 1;

	char c;
	if (mask != NULL) *mask = 0;

	for(;;) {
		fscanf(stream, "%c", &c);
		if (c == '1') {
			r |= pow;
		} else if (c != '0') {
			break;
		}
		if (mask != NULL) (*mask) |= pow;

		pow *= 2;
	}

	return r;
}

int is_prefix(char *prefix, char *str) {
	while (*prefix) {
		if (*prefix != *str) return 0;
		prefix++;
		str++;
	}
	return 1;
}