Forum: Assembly May 7th, 2009 |
| Replies: 5 Views: 707 Nevermind, I got it. Thanks a ton! :) |
Forum: Assembly May 7th, 2009 |
| Replies: 5 Views: 707 ORG 100
Input
Store X
Input
Store Y
Load Zero / Move 0 into AC
Store Z / Set Z to 0
If, Load Z / Load Z
Skipcond 400 / If AC=0 (Z=0), skip the next instruction
Jump Endif / Jump to Endif if... |
Forum: Assembly May 6th, 2009 |
| Replies: 5 Views: 707 I was able to do multiplication:Input /Input A value
Store A
Input /Input B value
Store B
Loop, Load A
Skipcond 800 If AC > 0, continue loop
Jump Endloop
Subt One
... |
Forum: Assembly May 4th, 2009 |
| Replies: 5 Views: 707 How can I perform Division in Marie Assembly Language? The functions available in Marie programming are for Addition and Subtraction. Any help will be appreciated. |
Forum: Assembly May 3rd, 2009 |
| Replies: 0 Views: 659 I'm trying to create a calculator in MARIE Assembly Language. After some brain storming, I have addition, subtraction, and multiplication codes. I'm completely new to this language and would like to... |
Forum: JSP Feb 1st, 2009 |
| Replies: 1 Views: 1,229 I've created database in Mysql and would like to access db tables from localhost jsp. This is what I've created for far:
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<HTML>... |
Forum: Java Dec 28th, 2008 |
| Replies: 7 Views: 456 Thanks a ton! The problem has been solved. Thanks for your help :) |
Forum: Java Dec 28th, 2008 |
| Replies: 7 Views: 456 This is ClickMe program where it's suppose to change button text once the user clicks the button. Although, program does successfully launch and pops up the "Click ME" button but once it's clicked... |