Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 159957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:57:00+00:00 2026-05-11T10:57:00+00:00

In my MIPs Assembly Programming class I’ve been tasked with writing a program that

  • 0

In my MIPs Assembly Programming class I’ve been tasked with writing a program that converts a string into simplified pig latin.

Simplified pig latin assumes all words in the string are at least 2 characters long, and every word has its first letter shifted to the end followed by ‘ay’. Also, assume there are no punctuation marks of any kind.

So, ‘stackoverflow is great’ becomes ‘tackoverfloway siay reatgay’.

I’ve taken a stab at this program and I’m nearly completed. It works fine, except that for some reason I have a line break in the middle of the last word every time.

For example:

tackoverflowsay siay reat
gay

Instead of:

tackoverflowsay siay reatgay

I’ve tried decuding what would be causing this line break in the last exit portion of my program but I don’t see it. Do I have a pre-mature null terminated string? If I do, I don’t see it.

Here is my code:

#################################################### #  Text Segment ####################################################         .text         .globl main main:         la $t0, char         la $t1, buffer         lb $t3, space          la $a0, prompt         li $v0, 4         syscall          la $a0, buffer         li $a1, 200         li $v0, 8         syscall          lb $t2, ($t1)           # Load first char         addi $t1, $t1, 1  loop:         lb $t4, ($t1)           # Load next character into $t4          addi $t1, $t1, 1         beqz $t4, exit          # Reached end of string, exit?           beq $t3, $t4, loop2     # If $t4 = ' ' char, second loop          move $a0, $t4           # else, lets keep printing chars         li $v0, 11         syscall          j loop  loop2:         move $a0, $t2         li $v0, 11         syscall          la $a0, aystr         li $v0, 4         syscall          lb $t2, ($t1)            addi $t1, $t1, 1              j loop exit:          move $a0, $t2         li $v0, 11         syscall          la $a0, aystr         li $v0, 4         syscall          li $v0, 10         syscall         # Cya...  #################################################### #  Data Segment ####################################################          .data prompt: .asciiz 'Enter Phrase: ' result: .asciiz 'Pig Latin: ' space:  .ascii ' ' aystr:  .asciiz 'ay ' char:   .byte 1 buffer: .byte 200 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:57:00+00:00Added an answer on May 11, 2026 at 10:57 am

    You almost certainly have a string of the form:

    stackoverflow is great\n 

    where \n is a newline character. This would translate into:

    tackoverflowsay siahy reat\ngay 

    if you simplistically detected the end of the word as either space or null-terminator.

    I’m not going to give you the code (since this is homework) but the easiest solution, in my opinion, would be to have another loop processing the entire string, replacing all '\n' characters with spaces.

    This would be done before your latinization loops.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 119k
  • Answers 119k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The problem is, that every plugin has its own Classloader… May 11, 2026 at 11:54 pm
  • Editorial Team
    Editorial Team added an answer Two problems with your code. First, it looks like you're… May 11, 2026 at 11:54 pm
  • Editorial Team
    Editorial Team added an answer To understand how the basic injection mechanism works, take a… May 11, 2026 at 11:54 pm

Related Questions

In my MIPs Assembly Programming class I've been tasked with writing a program that
At school we have been programming in MIPS assembly language for some time. I'm
My MIPS Assembly class required me to read in an expression of unknown size
Are there any command line interpreters or any other set of programs around for
In different assembly languages MUL (x86)/MULT (mips) refer to multiplication. It is a black

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.