Results 1 to 6 of 6
  1. #1
    Meh...
    Join Date
    Dec 2001
    Posts
    1,516

    ShadowPrince add z64 support.

    that file type is still not supported.

    The only forum I have more than 1,000 posts on! weeeeeeee bleep.


    • Advertising

      advertising
      EmuTalk.net
      has no influence
      on the ads that
      are displayed
        
       

  2. #2
    It's supported ,u can see files with such extension in rombrowser.
    And i just added this extension to load rom dialog.
    And ,afaik,it was supported in original Uhle too,just change extension to something like v64.

  3. #3
    Meh...
    Join Date
    Dec 2001
    Posts
    1,516
    actually z64 was not supported in the original uhle, but i cant just change file extensions, i have to use tool64 to switch from z64 type file (big endian), to the v64 (byteswapped).
    The only forum I have more than 1,000 posts on! weeeeeeee bleep.

  4. #4
    ! David_Hayter's Avatar
    Join Date
    Nov 2002
    Location
    Round the Corner
    Posts
    119

    N64 ?

    Originally posted by gokuss4
    actually z64 was not supported in the original uhle, but i cant just change file extensions, i have to use tool64 to switch from z64 type file (big endian), to the v64 (byteswapped).
    Ya sure dod, coz Ive changed the extension before and has worked perfectly, whts that big endian ya talkin bout?
    :!!!:
    None else to say

  5. #5
    Moderator Cyberman's Avatar
    Join Date
    Nov 2001
    Posts
    1,824

    Re: ?

    Originally posted by David_Hayter
    Ya sure dod, coz Ive changed the extension before and has worked perfectly, whts that big endian ya talkin bout?
    :!!!:
    Endianess... refers to the byte order of how things are stored in memory. For example if you had an array of 100 unsigned short data objects. that's 200 bytes.
    Little Endian stores it this way:
    0 1
    LSB MSB
    Big Endian Stores it this way:
    0 1
    MSB LSB

    So.. as you can see the values are stored ifferently in memory the same is with binary data in files.

    Cyb
    Progress (n.):
    The process through which the Internet has evolved from smart people in front of dumb terminals to dumb people in front of smart terminals.
    -------------------------------------------------------------------
    Recursive (adj):
    see Recursive

  6. #6
    Superman Azimer's Avatar
    Join Date
    Nov 2001
    Location
    USA
    Posts
    837

    Re: Re: ?

    Way to confuse them Cyber. The byte's significance is not altered. The MSB (most significant byte) is the part of the word which is largest. 0x12345678, the MSB is 0x1234. MSB First (aka Big Endian), stores it as you see it, 0x12345678 where 0x1234 is memory location 0 and 0x5678 is memory location 1. LSB First (aka Little Endian), stores it swapped, 0x56781234 where 0x5678 is memory location 0 and 0x1234 is memory location 1. The purpose behind this goes back to the growth of numbers. When a number surpasses the maximum value of its storage type, it needs to do one of two things. Either it overflows or it spans another byte. The idea with LSB First/little endian, is that you can easily span to the next memory location without changing how the number is stored. That was the original purpose of swapping it. Fortunately, those days are over and we have fixed data types. The artifact remains however, and we have endianess issues. Big Endian/MSB First is the best way to go because it is "human readable".

    -Azimer

    Originally posted by Cyberman
    Endianess... refers to the byte order of how things are stored in memory. For example if you had an array of 100 unsigned short data objects. that's 200 bytes.
    Little Endian stores it this way:
    0 1
    LSB MSB
    Big Endian Stores it this way:
    0 1
    MSB LSB

    So.. as you can see the values are stored ifferently in memory the same is with binary data in files.

    Cyb
    -Azimer

    "I am not a teacher: only a fellow traveler of whom you asked the way.
    I pointed ahead -- ahead of myself as well as of you." (George Bernard Shaw)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •