This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:sysprog:projects:wut2 [2018/02/15 01:02] – [rotate.c] ahought2 | notes:sysprog:projects:wut2 [2018/02/15 15:31] (current) – [rotate.c - Aaron Houghtaling] ahought2 | ||
---|---|---|---|
Line 9: | Line 9: | ||
=====endian.c===== | =====endian.c===== | ||
=====checksum.c===== | =====checksum.c===== | ||
- | =====twoscomp.c===== | + | =====twoscomp.c |
+ | |||
+ | Last week, I had a broken, messy version of twoscomp.c. So I decided to rewrite it for wut2. Everything works except for only one string can be input at a time. | ||
+ | |||
+ | < | ||
+ | ./twoscomp -s " | ||
+ | 01101010 | ||
+ | |||
+ | ./twoscomp -v -s " | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 2 | ||
+ | Wordsize: | ||
+ | |||
+ | 10010110 -> 01101001 + 1 = 01101010 | ||
+ | |||
+ | ./twoscomp -w 4 -s " | ||
+ | 0111 | ||
+ | |||
+ | ./twoscomp -w 4 -v -s " | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 2 | ||
+ | Wordsize: | ||
+ | |||
+ | 1001 -> 0110 + 1 = 0111 | ||
+ | |||
+ | | ||
+ | Improper String Length. Wordsize is: 8 | ||
+ | String is: 6 characters long | ||
+ | |||
+ | ./twoscomp -b 10 -s " | ||
+ | 10 -> 246 | ||
+ | |||
+ | ./twoscomp -v -b 10 -s " | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 10 | ||
+ | Wordsize: | ||
+ | |||
+ | 10 -> 00001010 -> 11110101 + 1 = 11110110 -> 246 | ||
+ | |||
+ | ./twoscomp -v -w 4 -b 10 -s " | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 10 | ||
+ | Wordsize: | ||
+ | |||
+ | 10 -> 1010 -> 0101 + 1 = 0110 -> 6 | ||
+ | |||
+ | ./ | ||
+ | 124 -> 132 | ||
+ | |||
+ | ./ | ||
+ | 4294967172 | ||
+ | |||
+ | ./ | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 10 | ||
+ | Wordsize: | ||
+ | |||
+ | 124 -> 00000000000000000000000001111100 -> | ||
+ | 11111111111111111111111110000011 + 1 = | ||
+ | 11111111111111111111111110000100 -> | ||
+ | 4294967172 | ||
+ | |||
+ | ./ | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 10 | ||
+ | Wordsize: | ||
+ | |||
+ | 255 -> 11111111 -> 00000000 + 1 = 00000001 -> 1 | ||
+ | |||
+ | ./ | ||
+ | |||
+ | Segmentation fault | ||
+ | |||
+ | ./ | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 10 | ||
+ | Wordsize: | ||
+ | |||
+ | 6553 -> 00000000000000000001100110011001 -> | ||
+ | 11111111111111111110011001100110 + 1 = | ||
+ | 11111111111111111110011001100111 -> | ||
+ | 4294960743 | ||
+ | |||
+ | ./ | ||
+ | 123 -> 83 -> 193 -> 301 | ||
+ | |||
+ | ./ | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 8 | ||
+ | Wordsize: | ||
+ | |||
+ | 123 -> 83 -> 01010011 -> 10101100 + 1 = 10101101 -> 173 -> 255 | ||
+ | |||
+ | / | ||
+ | 1015 -> 175 -> 81 -> 51 //a = 10 f = 15, hence 1015 -> 175 | ||
+ | |||
+ | / | ||
+ | Verbose mode on: probably less ugly | ||
+ | |||
+ | Base: 16 | ||
+ | Wordsize: | ||
+ | |||
+ | 1015 -> 175 -> 10101111 -> 01010000 + 1 = 01010001 -> 81 -> 51 | ||
+ | |||
+ | ./twoscomp --help | ||
+ | ~~~~~twoscomp.c help page~~~~~ | ||
+ | |||
+ | Usage: ./twoscomp -s [STRING] [OPTION] | ||
+ | |||
+ | -q, --quiet | ||
+ | suppress all output | ||
+ | -V, --version | ||
+ | print version info | ||
+ | -v, --verbose | ||
+ | includes printout of all values specified by options | ||
+ | -D, --debug | ||
+ | | ||
+ | -s [STRING], --string[=STRING] | ||
+ | The string to be processed. | ||
+ | -d [DELIM], --delim[=DELIM] | ||
+ | Changes delimeter to [DELIM]. Defaults to space | ||
+ | -w [SIZE], --wordsize[=SIZE] | ||
+ | Sets the wordsize to [SIZE}. Defaults to 8 | ||
+ | Must be power of 2, between 4 and 128 | ||
+ | -b [BASE], --BASE[=BASE] | ||
+ | Changes the input/ | ||
+ | |||
+ | ./twoscomp -V | ||
+ | twoscomp Ver. 0.2 | ||
+ | |||
+ | //I also included my own -D debugging option | ||
+ | |||
+ | ./twoscomp -D -s " | ||
+ | Debug mode on~~: this is gonna be ugly | ||
+ | Verbose mode on: probably less ugly | ||
+ | ==================~~~~=============== | ||
+ | |||
+ | Size of Binary[]: 9 | ||
+ | Base: 2 | ||
+ | Wordsize: | ||
+ | Copied Input: | ||
+ | Size of Binary[]: 9 | ||
+ | Start of toBinary() | ||
+ | Base is 2 | ||
+ | After toBinary(), binary[] is: 10010110 | ||
+ | Start of twoscomp() | ||
+ | 10010110 -> 01101001 + 1 = | ||
+ | After twoscomp(), binary[] is: 01101010 | ||
+ | end of twoscomp() | ||
+ | Start of toDec() | ||
+ | |||
+ | End of toDec | ||
+ | After toDec, convDec is: 0 | ||
+ | After toDec(), binary[] is(should be unchanged): 01101010 | ||
+ | End of toBinary/ | ||
+ | Start of printnum() | ||
+ | 01101010 | ||
+ | End of printnum | ||
+ | </ | ||
=====addition.c - Kris===== | =====addition.c - Kris===== | ||
Line 158: | Line 324: | ||
- | =====rotate.c===== | + | =====rotate.c |
rotate.c is a program that when given a set of bits will shift them left or right and carry over the removed bit and tacked onto the left or right side respectively. | rotate.c is a program that when given a set of bits will shift them left or right and carry over the removed bit and tacked onto the left or right side respectively. | ||
Line 166: | Line 332: | ||
lab46: | lab46: | ||
1110 | 1110 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
1110 | 1110 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
1011 | 1011 | ||
- | </cli> | + | |
- | <cli> | + | lab46:~/src/ |
+ | 1110 | ||
lab46: | lab46: | ||
Version: rotate 2.0 | Version: rotate 2.0 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
1110 | 1110 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
1110 | 1110 | ||
110 | 110 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
1110 110 | 1110 110 | ||
- | </ | + | |
- | <cli> | + | |
lab46: | lab46: | ||
Error: input does not match byte size! | Error: input does not match byte size! | ||
- | </ | + | |
- | <cli>lab46: | + | lab46: |
Usage: rotate [OPTION]... | Usage: rotate [OPTION]... | ||
Rotates bits from a given input based on args given | Rotates bits from a given input based on args given | ||
Line 227: | Line 389: | ||
</ | </ | ||
=====invert.c===== | =====invert.c===== | ||
+ | A bit-wise inversion is an operation where the end outputs the opposite bit of the beginning input. What this means is that the input bit of 1 will result in a 0 after this operation. | ||
+ | Example of outputs and error messages: | ||
+ | < | ||
+ | ./invert -s " | ||
+ | </ | ||
+ | < | ||
+ | echo " | ||
+ | </ | ||
+ | < | ||
+ | echo " | ||
+ | </ | ||
+ | < | ||
+ | echo " | ||
+ | </ | ||
+ | < | ||
+ | ./invert -V --> 0.0.2 | ||
+ | </ | ||
+ | < | ||
+ | ./invert --help | ||
+ | Usage: ./invert [OPTION]... [FILE]... | ||
+ | performs a bit inversion against a set of input values! | ||
+ | Arguments: | ||
+ | -h, --help | ||
+ | -V, --Version | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ |