Hello, I am needing help with the Binary Bomb Assignment. I have completed phase one by using the x /s command. I am now stuck on phase 2.
From what I understand, the the function call rea...
Hello again! I am now done with phase 6, but need help getting to the secret phase. Here is my code, and I know that this code in phase_defused
8049341: 75 1d jne 8049360...
Hello!
I am working on the second phase of the binary bomb/bomblab project, and I am a bit stuck.
Basically, we have to input 6 integers to keep the bomb from exploding - however they must b...
I am working through the CS:APP textbook (auditing a class at the local state U) and I'm trying to complete the final phase of the binary bomb lab. Basically, I need to figure out what string...
I am working on this binary bomb for class, and am stuck at phase_2. Here is the disassembled code with comments I made. I also included read_six_numbers as I think that is where the answer ...
I am looking for a short code segment to convert an eight digit Binary number to Hex. I don't need the code, just some suggestions on what path to take. Thanks.
I've been trying to install SPIM http://pages.cs.wisc.edu/~larus/spim.html
on Ubuntu 8.10, but so far I've had no success. I also tried installing the WIndows version with WINE, but I had no...
OK im sure of u guys might of encountered this little exercise before. Anyways, I'm having trouble figuring out one of the phases.
Anyways here's the code:
/* The second phase is harder...
OK, I am stressed out from this. I am working on senior design and I have gotten pretty far on my program but now I am stuck. I need to program a PIC16F877a to take in 3 inputs
1.) Temperat...
Alright i'm on phase 4 of the binary bomb problem, have analyzed the assembly and this is what I have.
Dump of assembler code for function phase_4:
0x08048c2c <phase_4+0>: push %ebp
0x0...
i tried to implement a custom solution in sharepoint, i was able to enable the feature for the site. But when i tried to access the portal page it gave the message as below. now even my homepa...
Alright, on the last phase of the binary bomb. I have the code commented and just wanted to know if what I think is happening really is. So far I just think it is a bunch of nested loops and...
mul $t3, $s0, $t4 #i*P(100) size of row of (C)[p]
addu $t3, $t3, $s1 #i*size(row) + j (C)[p][r]
sll $t3, $t3, 3 #byte offset of [i][j]
addu $t3, $a0, $t3#byte address of c[i][j]
l....
I have the following assembly code and I wonder if anyone can help me to find out which assembly code line corresponds to the C code I have.
movl a, %eax
movl x, %edx
leal (%eax,...
Hi,
I have a c++ program which I would like to convert to MIPS, is there a tool available which would allow me to do that
??
Thanx
Here is the object dump of my the bomb program:
bufbomb: file format elf32-i386
Disassembly of section .init:
080486c8 <_init>:
80486c8: 55 push ...
This is for some college work -
I need to add two floating point numbers using asm with an atmel.
I pretty much know how to add normal numbers, but totally stuck on floating point number...
I've coded an assembly program to perform a quicksort on a group of 10 decimal numbers. Either the original code which is in C is wrong, or the translation into assembly is not correct. I'm ...
Infinity08 your comments are really helping me understand this better. Could you please let me know if what I wrote is going on here is correct. I can't seem to figure out exactly what this ...
Hello,
I'm trying to figure out what values to input so we can leave the <phase_3> function without the <explode_bomb> being called.
This is what I know so far. This code has a switch stat...
I would like to create a VHDL coding whereby a certain two's complement value 'n' will be multiplied by 7/8 Is it possible to create such an arithmetic?
In short, what i want is
n X 7/8 = m...
Hi,
Currently I am doing 8051 assembly project which need me to make some selection on hyperterminal screen. I am facing a problem to clear current screen when I am suppose to display anoth...
I am writting an assembly program for 8086.I need to have a time delay which must be 1 sec.I thought something like that:
AGAIN2: MOV DI,01ADH
AGAIN: MOV BP,FFFFH
NOP ...
1. Compute the sum of the following pairs of 6-bit unsigned numbers. Indicate if there is overflow.
1 0 1 1 1 1 + 0 0 0 0 0 1
1 0 1 0 1 0 + 1 0 0 0 1 1
2. Compute the sum of the fol...
How do I convert all the upper-case letters in a string into lower-case. (The starting address of the string is passed to the subroutine in index register X.)