diySSD
  • Product
    Catalog Buyer Guides Out of Stock
  • Pricing
    All Retailers Amazon Best Buy B&H Manufacturer Newegg
  • Blog
    Posts
  • Support
    FAQ

Product

Catalog Buyer Guides Out of Stock

Pricing

All Retailers Amazon Best Buy B&H Manufacturer Newegg

Blog

Posts

Support

FAQ
/* ========================================================================== DIYSSD NAVIGATION - CSS VARIABLES ========================================================================== */ :root { /* Charcoal Scale */ --charcoal-050: #f5f5f5; --charcoal-100: #e6e6e6; --charcoal-200: #cccccc; --charcoal-300: #adadad; --charcoal-500: #7a7a7a; --charcoal-700: #565656; --charcoal-800: #474747; --charcoal-900: #3a3a3a; --charcoal-950: #2c2c2c; /* Accent Colors - WCAG AA Compliant */ --ocean-blue: #245270; --ocean-blue-rgb: 36, 82, 112; --terracotta: #c7522a; --golden-sand: #e5b363; --forest-green: #5d8a66; --dusty-plum: #8b5a8b; /* Accessibility */ --focus-ring-color: var(--ocean-blue); --focus-ring-width: 3px; --focus-ring-offset: 2px; --touch-target-min: 44px; /* Transitions */ --transition-speed: 0.2s; --transition-easing: cubic-bezier(0.4, 0, 0.2, 1); } /* Reduced Motion Support */ @media (prefers-reduced-motion: reduce) { :root { --transition-speed: 0.01ms; } * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* ========================================================================== NAVIGATION CONTAINER ========================================================================== */ .diyssd-nav-container { position: relative; width: 100%; background: #ffffff; border-bottom: 1px solid var(--charcoal-200); z-index: 1000; } /* ========================================================================== MAIN NAVIGATION ========================================================================== */ .diyssd-nav { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; padding: 0.75rem 1.5rem; height: 4rem; background: #ffffff; /* Performance: GPU acceleration for smoother rendering */ transform: translateZ(0); backface-visibility: hidden; } /* ========================================================================== LOGO SECTION ========================================================================== */ .diyssd-nav-left { flex: 1; display: flex; align-items: center; min-width: 0; } .diyssd-logo { font-family: "Oswald", sans-serif; font-weight: 800; font-size: 36px; color: #2d5a7b; text-decoration: none; display: block; /* Performance: Prevent paint on hover */ will-change: opacity; } .diyssd-logo:hover { opacity: 0.8; } .diyssd-logo:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: var(--focus-ring-offset); border-radius: 4px; } /* ========================================================================== MENU CONTAINER ========================================================================== */ .diyssd-nav-right { flex: 0 0 auto; display: flex; align-items: center; gap: 0.75rem; height: 100%; } /* ========================================================================== DESKTOP MENU ========================================================================== */ .diyssd-desktop-menu { display: none; align-items: center; gap: 0rem; list-style: none; margin: 0; padding: 0; height: 100%; } @media (min-width: 769px) { .diyssd-desktop-menu { display: flex; } } /* ========================================================================== MENU ITEMS ========================================================================== */ .diyssd-menu-item { position: relative; display: flex; align-items: center; height: 100%; /* Performance: Can't use contain here as it breaks dropdown positioning */ } .diyssd-menu-link { display: flex; align-items: center; padding: 0.75rem 1rem; min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.9375rem; font-weight: 500; white-space: nowrap; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); cursor: pointer; /* Performance: Hint for background color changes */ will-change: background-color, color; } .diyssd-menu-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-menu-link:focus { outline: none; } .diyssd-menu-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-menu-link.has-dropdown::after { content: "▼"; margin-left: 0.5rem; font-size: 0.625rem; transition: transform var(--transition-speed) var(--transition-easing); display: inline-block; /* Performance: Use transform for rotation */ will-change: transform; } .diyssd-menu-item:hover .diyssd-menu-link.has-dropdown::after { transform: rotate(180deg); } /* ========================================================================== MENU DIVIDER ========================================================================== */ .diyssd-menu-divider { width: 1px; height: 1.5rem; background-color: var(--charcoal-200); margin: 0; } /* ========================================================================== DROPDOWN MENU ========================================================================== */ .diyssd-dropdown { position: absolute; top: calc(100% + 0.5rem); left: 50%; min-width: 200px; background: #ffffff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); padding: 0.5rem; opacity: 0; visibility: hidden; /* Performance: Use transform for animation instead of top/left */ transform: translateX(-50%) translateY(-8px); transition: opacity var(--transition-speed) var(--transition-easing), visibility var(--transition-speed) var(--transition-easing), transform var(--transition-speed) var(--transition-easing); z-index: 1001; /* Performance: GPU acceleration */ will-change: opacity, transform; backface-visibility: hidden; } .diyssd-menu-item:hover .diyssd-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .diyssd-dropdown-link { display: flex; align-items: center; padding: 0.75rem; min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.875rem; font-weight: 500; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: Hint for hover state */ will-change: background-color, color; } .diyssd-dropdown-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-dropdown-link:focus { outline: none; } .diyssd-dropdown-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-dropdown-link:active { background-color: var(--charcoal-050); } .diyssd-dropdown-link.active { color: var(--terracotta); background-color: rgba(199, 82, 42, 0.08); font-weight: 600; } /* ========================================================================== MOBILE TOGGLE BUTTON ========================================================================== */ .diyssd-mobile-toggle { display: flex; flex-direction: column; justify-content: space-around; width: var(--touch-target-min); height: var(--touch-target-min); padding: 0.75rem; background: transparent; border: none; cursor: pointer; border-radius: 4px; transition: background-color var(--transition-speed) var(--transition-easing); /* Performance: Hint for background changes */ will-change: background-color; } .diyssd-mobile-toggle:hover { background-color: var(--charcoal-050); } .diyssd-mobile-toggle:focus { outline: none; } .diyssd-mobile-toggle:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-mobile-toggle span { display: block; width: 100%; height: 2px; background-color: var(--charcoal-900); border-radius: 2px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: GPU acceleration for transforms */ will-change: transform, opacity; backface-visibility: hidden; } .diyssd-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .diyssd-mobile-toggle.active span:nth-child(2) { opacity: 0; } .diyssd-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (min-width: 769px) { .diyssd-mobile-toggle { display: none; } } /* ========================================================================== MOBILE OVERLAY ========================================================================== */ .diyssd-mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: opacity var(--transition-speed) var(--transition-easing), visibility var(--transition-speed) var(--transition-easing); z-index: 1001; /* Performance: GPU acceleration */ will-change: opacity; backface-visibility: hidden; } .diyssd-mobile-overlay.active { opacity: 1; visibility: visible; } @media (min-width: 769px) { .diyssd-mobile-overlay { display: none; } } /* ========================================================================== MOBILE MENU ========================================================================== */ .diyssd-mobile-menu { position: fixed; top: 0; right: 0; width: 85%; max-width: 320px; height: 100%; background: #ffffff; /* Performance: Use transform instead of right property */ transform: translateX(100%); transition: transform var(--transition-speed) var(--transition-easing); z-index: 1002; overflow-y: auto; box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15); /* Performance: GPU acceleration */ will-change: transform; backface-visibility: hidden; /* Performance: Enable hardware scrolling */ -webkit-overflow-scrolling: touch; } .diyssd-mobile-menu.active { transform: translateX(0); } @media (min-width: 769px) { .diyssd-mobile-menu { display: none; } } /* ========================================================================== MOBILE HEADER ========================================================================== */ .diyssd-mobile-header { display: flex; align-items: center; justify-content: flex-end; padding: 0.6rem 1rem; border-bottom: 1px solid var(--charcoal-200); } .diyssd-mobile-close { display: flex; align-items: center; justify-content: center; width: var(--touch-target-min); height: var(--touch-target-min); padding: 0; background: transparent; border: none; cursor: pointer; border-radius: 4px; font-size: 1.5rem; color: var(--charcoal-900); transition: background-color var(--transition-speed) var(--transition-easing); /* Performance: Hint for background changes */ will-change: background-color; } .diyssd-mobile-close:hover { background-color: var(--charcoal-050); } .diyssd-mobile-close:focus { outline: none; } .diyssd-mobile-close:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } /* ========================================================================== MOBILE CONTENT ========================================================================== */ .diyssd-mobile-content { padding: 1rem; } .diyssd-mobile-section { margin-bottom: 1rem; } .diyssd-mobile-section:last-child { margin-bottom: 0; } .diyssd-mobile-heading { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-500); margin: 0 0 0.5rem 0; } .diyssd-mobile-divider { height: 1px; background-color: var(--charcoal-200); margin-bottom: 0.75rem; } .diyssd-mobile-link { display: flex; align-items: center; padding: 0 0.75rem; /* margin-bottom: 0.25rem; */ min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.875rem; font-weight: 500; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: Hint for interactive states */ will-change: background-color, color, transform; } .diyssd-mobile-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-mobile-link:focus { outline: none; } .diyssd-mobile-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-mobile-link:active { background-color: var(--charcoal-050); /* Performance: Use transform for visual feedback */ transform: translateX(2px); } .diyssd-mobile-link.active { color: var(--terracotta); background-color: rgba(199, 82, 42, 0.08); font-weight: 600; } /* ========================================================================== UTILITY CLASSES ========================================================================== */ body.diyssd-menu-open { overflow: hidden; } @media (prefers-contrast: high) { .diyssd-nav { border-bottom-width: 2px; } .diyssd-menu-link:focus-visible, .diyssd-dropdown-link:focus-visible, .diyssd-mobile-link:focus-visible { outline-width: 4px; } }

ADATA LEGEND 960 MAX

The Heatsink That Actually Matters

PCIe 4.0 x4 Interface | 7,400 MB/s Read Speed | PS5 Compatible With Heatsink
adata legend 960 max product image | diySSD
/* Global reset for consistent box-sizing */ * { box-sizing: border-box; } /* Container for the entire TOC component */ .toc-embed-wrapper .toc-container { max-width: 800px; margin: 40px auto; } /* Individual collapsible item styling */ .toc-embed-wrapper .toc-item { background: #fff; border-radius: 16px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); margin-bottom: 18px; overflow: hidden; /* Prevents content from breaking border radius */ transition: box-shadow 0.2s ease; /* Smooth hover effect */ } /* Hover effect for entire item */ .toc-embed-wrapper .toc-item:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); } /* Toggle button styling - removes default button appearance */ .toc-embed-wrapper .toc-toggle { background: none; border: none; width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; font-weight: 500; cursor: pointer; padding: 24px 28px; outline: none; color: #1a1a1a; transition: background-color 0.2s ease; } /* Button hover state */ .toc-embed-wrapper .toc-toggle:hover { background-color: #e2e1df; } /* Keyboard focus accessibility - only visible when navigating with tab */ .toc-embed-wrapper .toc-toggle:focus-visible { outline: 2px solid #007acc; outline-offset: -2px; } /* Question text styling */ .toc-embed-wrapper .toc-question { flex: 1; /* Takes up remaining space */ font-weight: 400; text-align: left; margin: 0; } /* Plus/minus icon styling */ .toc-embed-wrapper .toc-icon { font-size: 1.8rem; font-weight: 300; transition: transform 0.3s ease, color 0.2s ease; /* Smooth rotation and color change */ margin-left: 20px; color: #666; flex-shrink: 0; /* Prevents icon from shrinking */ width: 24px; text-align: center; } /* Icon state when expanded - rotates 45deg to create X from + */ .toc-embed-wrapper .toc-toggle[aria-expanded="true"] .toc-icon { transform: rotate(45deg); color: #28a745; /* Green color when open */ } /* Answer content container - hidden by default */ .toc-embed-wrapper .toc-answer { padding: 0 28px 24px 28px; font-size: 1rem; color: #444; line-height: 1.6; display: none; /* Hidden by default */ animation: slideDown 0.3s ease-out; /* Smooth entrance animation */ } /* Show class for JavaScript toggle */ .toc-embed-wrapper .toc-answer.show { display: block; } /* Slide down animation for smooth reveal */ @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* Main ordered list styling (1, 2, 3...) */ .toc-embed-wrapper .toc-answer ol { list-style-type: none; /* Remove default numbering */ padding-left: 0; /* Remove default padding */ margin: 0.8em 0; /* Vertical spacing */ counter-reset: main-counter; /* Counter for main items */ } /* Main list items (h2 headers) */ .toc-embed-wrapper .toc-answer > ol > li { counter-increment: main-counter; position: relative; } .toc-embed-wrapper .toc-answer > ol > li::before { content: counter(main-counter) ". "; color: #007acc; font-weight: 600; margin-right: 0.5em; } /* Nested ordered list styling (x.1, x.2, x.3...) */ .toc-embed-wrapper .toc-answer ol ol { list-style-type: none; /* Remove default lettering */ padding-left: 2.2em; /* Additional indentation for hierarchy */ margin: 0.6em 0; /* Tighter spacing for nested items */ counter-reset: sub-counter; /* Counter for sub-items */ } /* Sub-list items (h3 headers) */ .toc-embed-wrapper .toc-answer ol ol li { counter-increment: sub-counter; position: relative; } .toc-embed-wrapper .toc-answer ol ol li::before { content: counter(main-counter) "." counter(sub-counter) " "; color: #28a745; font-weight: 500; margin-right: 0.5em; } /* Main list item spacing */ .toc-embed-wrapper .toc-answer li { margin: 0.6em 0; padding-left: 0.3em; /* Small padding for better text alignment */ } /* Nested list item spacing - tighter than main items */ .toc-embed-wrapper .toc-answer ol ol li { margin: 0.4em 0; } /* TOC link styling */ .toc-embed-wrapper .toc-answer a { text-decoration: none; color: #444; transition: color 0.2s ease; } .toc-embed-wrapper .toc-answer a:hover { color: #007acc; text-decoration: underline; } /* Remove default list marker styling since we're using custom numbering */ /* Empty state styling */ .toc-embed-wrapper .toc-empty { padding: 20px 28px; color: #888; font-style: italic; text-align: center; } /* Responsive design for mobile devices */ @media (max-width: 768px) { .toc-embed-wrapper .toc-container { margin: 20px auto; padding: 0 16px; /* Side padding on mobile */ } .toc-embed-wrapper .toc-toggle { padding: 20px 22px; /* Reduced padding on mobile */ font-size: 1.1rem; /* Slightly smaller font */ } .toc-embed-wrapper .toc-answer { padding: 0 22px 20px 22px; /* Matched reduced padding */ font-size: 0.95rem; /* Smaller text on mobile */ } .toc-embed-wrapper .toc-icon { font-size: 1.6rem; /* Smaller icon on mobile */ margin-left: 16px; } } /* Scroll offset for sticky header - adjust -80px to match your menubar height */ .toc-embed-wrapper .toc-answer a[href^="#"] { scroll-margin-top: 76px; /* Adjust this value to match your sticky menubar height */ } /* Alternative: Add offset to the target headers themselves */ h2, h3 { scroll-margin-top: 76px; /* Adjust this value to match your sticky menubar height */ }
Advertisement

Introduction

If you've been shopping for a PCIe Gen 4 NVMe SSD lately, you've probably already bumped into the uncomfortable reality that thermal throttling isn't just some theoretical concern engineers worry about—it's a genuine performance killer that can turn your blazing-fast drive into a stuttering mess during sustained workloads. The ADATA LEGEND 960 MAX arrives as ADATA's answer to this universal frustration, taking the company's already capable Legend 960 and strapping on a full-coverage aluminum heatsink that actually does something beyond looking pretty in product photos.

This M.2 2280 drive leverages PCIe 4.0 x4 interface with NVMe 1.4 support, claiming sequential read speeds up to 7,400 MB/s and writes reaching 6,800 MB/s—essentially maxing out what the Gen 4 interface can deliver. Available in 1TB, 2TB, and 4TB capacities, the LEGEND 960 MAX targets PC builders, content creators, and PS5 owners who refuse to play the constant shuffle game between checking temperatures and wondering if their SSD is about to crater mid-render. Unlike the heatsink-optional approach many manufacturers take, ADATA includes a 7mm thick finned aluminum solution that's actually engineered for thermal management rather than just cosmetic enhancement, making this drive particularly compelling for laptop installations and Sony's notoriously heat-sensitive PS5 expansion slot.

Product Overview

The ADATA LEGEND 960 MAX is built around the Silicon Motion SM2264F controller, which is a PCIe Gen 4.0 x4 NVMe SSD controller that delivers enterprise-class performance to consumer drives. The drive measures a standard 80 x 22 x 3.3mm without the heatsink—roughly the length of a credit card and about as thick as two stacked pennies—but once you attach the included thermal solution, dimensions expand to 80 x 23.2 x 10.65mm, which still fits comfortably within Sony's strict PS5 clearance requirements.

Weight comes in at just 7.3 grams for the bare drive—about the same as three US quarters stacked together—while the complete package with heatsink installed tips the scales at 36.6 grams, still light enough that thermal expansion concerns in laptop installations remain virtually nonexistent. ADATA wraps this hardware in a distinctive black and gold aesthetic with the heatsink featuring finned aluminum construction that maximizes surface area for passive cooling. The gold accents aren't just decorative flourishes—they're part of ADATA's Legend series branding that aims to position these drives as premium performance solutions rather than value-tier compromises.

This isn't just any M.2 drive slapped into a generic heatsink enclosure—it's specifically engineered with a double-sided component layout featuring Micron 176-layer TLC NAND flash distributed across four packages with two on each side, Samsung DDR4 DRAM cache chips totaling 1GB for the 1TB model and 2GB for the 2TB and 4TB variants, and the Silicon Motion controller centralized on the top side for optimal thermal dissipation. The heatsink itself uses a two-piece design with a bottom shround that cradles the drive and a finned top plate that locks into place—though be warned, the adhesive is strong enough that removal after installation becomes an exercise in patience and mild profanity.

Available capacities span 1TB, 2TB, and 4TB, with all models launched simultaneously in November 2022, meaning no frustrating staggered releases where you're waiting months for the capacity you actually need. ADATA backs the LEGEND 960 MAX with a five-year warranty and endurance ratings of 780TB written per terabyte of capacity—slightly above the 600-750TB TBW range many competitors offer, which translates to approximately 427GB of daily writes for five years on the 1TB model before you'd theoretically exceed the warranty threshold. The package includes ADATA's SSD Toolbox software for drive monitoring, firmware updates, secure erase capabilities, and TRIM optimization, though this utility only functions on Windows systems—PS5 owners and Mac users won't have access to these management features.

Performance & Real World Speed

ADATA claims sequential read speeds up to 7,400 MB/s and write speeds reaching 6,800 MB/s on the 2TB and 4TB models, with the 1TB variant slightly trailing at 6,000 MB/s for writes due to reduced parallelism from fewer NAND dies. Random performance specifications hit 750,000 IOPS for reads and 630,000 IOPS for writes on the larger capacities, with the 1TB model dropping to 730,000 read and 610,000 write IOPS. These numbers essentially max out the PCIe 4.0 x4 interface—you're looking at theoretical ceiling performance that competitors like the Samsung 990 Pro and WD_BLACK SN850X also claim, which immediately raises the question of whether ADATA can actually deliver these speeds under real-world conditions rather than synthetic benchmarks.

In real-world testing conducted by multiple reviewers, the LEGEND 960 MAX delivers on its speed promises with remarkable consistency. CrystalDiskMark sequential tests regularly exceed 7,400 MB/s for reads and 6,600 MB/s for writes—matching or slightly exceeding official specifications depending on system configuration and which PCIe slot you're using. A 50GB game installation transferred from SATA SSD to the LEGEND 960 MAX completes in approximately 15 seconds, while moving that same data to the PS5's internal storage via the expansion slot finishes in roughly 8 seconds thanks to Sony's velocity architecture optimization. Large file transfers like a 100GB video project folder sustain write speeds around 3,600 MB/s once the pseudo-SLC cache fills—the 2TB model sports a 200GB dynamic cache that handles burst workloads impressively before dropping to direct-to-TLC speeds that remain faster than most Gen 3 drives.

Game load times show minimal variance compared to the absolute fastest Gen 4 drives—Final Fantasy XIV Endwalker benchmark loading completes in 11.2 seconds on the LEGEND 960 MAX versus 10.8 seconds on the Samsung 990 Pro, a difference you'd never notice during actual gameplay. What genuinely sets this drive apart isn't raw speed but sustained performance—reviewers consistently note that the LEGEND 960 MAX maintains higher write speeds for longer durations than the non-heatsink Legend 960, with thermal sensors showing temperatures peaking around 65 degrees Celsius under heavy benchmark loads versus the 75-plus degrees the bare drive reaches. This thermal advantage means the drive spends less time throttling performance to manage heat, which translates to more consistent frame times when loading game assets and fewer stutters during large file operations that would push other drives into thermal protection modes.

Build Quality & Durability

ADATA has refined its Legend series aesthetic over multiple generations, and the LEGEND 960 MAX represents the current peak of that design evolution—black and gold color scheme with understated branding that suggests premium positioning without screaming for attention. The heatsink construction uses solid aluminum alloy with a finned top plate featuring convection channels that actually move air rather than just looking aggressive, and the manufacturing tolerances feel tight enough that there's no flex or rattling when you handle the assembled unit.

The adhesive thermal pad between drive and heatsink creates an almost permanent bond—multiple reviewers mention that removing the heatsink after installation requires heat gun assistance and careful prying that risks PCB damage. ADATA clearly expects this to be a install-once-and-forget-it solution, which makes sense given that most users will either use their motherboard's integrated M.2 heatsink or commit to the included solution based on their specific thermal needs. The ridges on the heatsink's top surface provide grip when inserting or removing the drive from M.2 slots, though once installed you'll rarely interact with it since these drives live buried inside cases or consoles.

Long-term reliability projections look solid based on the component selection—Micron's 176-layer TLC NAND has proven track record across multiple drive generations, the Silicon Motion SM2264F controller handles thermal management effectively without aggressive throttling, and the Samsung DDR4 DRAM cache ensures consistent performance for frequently accessed data. The 780TB TBW endurance rating per terabyte translates to roughly 427GB of daily writes for five years on the 1TB model before warranty coverage expires, which comfortably exceeds what even power users typically generate unless you're running constant video rendering or database operations. Professional reviewers conducting accelerated write testing report no failures or significant performance degradation through multiple terabytes of sustained writes, suggesting the drive should easily outlive its five-year warranty period for typical consumer workloads.

While you rarely see the drive once it's installed—particularly in desktop motherboards with M.2 covers or PS5 expansion bays—the attention to thermal engineering and component quality suggests this is a product designed to deliver consistent performance over its operational lifetime rather than just impressive benchmark screenshots during the first few weeks of ownership.

Compatibility

The ADATA LEGEND 960 MAX is a universal M.2 2280 PCIe Gen 4.0 x4 NVMe SSD that works with any system supporting the standard M.2 interface, period. This drive slots into desktop motherboards with PCIe 4.0 or 3.0 support—Intel Z490/Z590/Z690/Z790 platforms, AMD B550/X570/B650/X670 chipsets, and even older PCIe 3.0 systems where the drive will simply operate at reduced Gen 3 speeds of around 3,500 MB/s reads. The drive requires UEFI BIOS if you're installing Windows as a boot drive, and you'll want to ensure your motherboard's NVMe support is enabled in BIOS settings—basic stuff that any modern system handles automatically, but worth verifying if you're working with slightly older hardware.

PS5 compatibility deserves specific attention since Sony's expansion slot has become a significant secondary market for high-performance Gen 4 drives. The LEGEND 960 MAX with heatsink installed measures 10.65mm thick, which fits within Sony's 11.25mm maximum clearance with comfortable margin for thermal expansion. Installation requires removing the PS5's side panel and expansion bay cover, sliding the drive into the M.2 slot, and securing it with the included screw—Sony's system firmware automatically detects and formats the drive, though you'll need to run the PS5's built-in speed test which typically reports around 6,400 MB/s for this drive versus Sony's 5,500 MB/s minimum requirement. Games stored on the LEGEND 960 MAX play identically to titles on the internal SSD with imperceptible load time differences, and Sony's Quick Resume functionality works seamlessly across both storage locations.

Laptop installation compatibility varies based on manufacturer—ultrabooks with single-sided M.2 requirements won't accommodate this double-sided drive design, and the 10.65mm height with heatsink may not fit in laptops with tight internal clearances. If you're upgrading laptop storage, measure your existing drive's clearance and check whether components populate both sides of your current SSD before purchasing. The bare drive without heatsink measures just 3.3mm thick and works in virtually any laptop M.2 slot, though you'll sacrifice the thermal management benefits that make this drive worth choosing over cheaper alternatives.

The drive comes formatted and ready to use as secondary storage in Windows, though you'll need to initialize it through Disk Management if your system doesn't automatically detect it. MacOS support works fine for secondary storage, but you'll need to reformat to APFS or HFS+ through Disk Utility. Linux distributions handle the drive without issues across major filesystems.

Critically, you need to understand what this drive cannot do—it won't work in systems with only SATA M.2 slots, it requires PCIe lanes to function, and using it in a PCIe 3.0 system means you're paying for Gen 4 speeds you can't actually utilize. If your motherboard or laptop maxes out at PCIe 3.0, save money and buy a cheaper Gen 3 drive instead.

Strengths & Weaknesses

The ADATA LEGEND 960 MAX's greatest strength lies in its thermal management system that actually functions as advertised rather than serving as decorative heatsink theater. Testing consistently shows the drive maintaining temperatures 10-15 degrees Celsius cooler than the non-heatsink Legend 960 under identical workloads, with peak temperatures around 65 degrees versus 75-plus degrees on the bare drive. This thermal advantage translates directly into sustained performance—the drive maintains higher write speeds for longer durations during large file transfers, shows less variance in benchmark results across multiple runs, and avoids the throttling behavior that plagues overheated SSDs during extended rendering or gaming sessions. The included heatsink perfectly sized for PS5 installation eliminates the need to source third-party cooling solutions and ensures the drive operates within Sony's thermal specifications.

Performance credentials stack up impressively against premium competition—sequential speeds genuinely max out the PCIe 4.0 interface with reads consistently exceeding 7,400 MB/s and writes hitting 6,600-6,800 MB/s depending on capacity. Random IOPS performance handles game loading and application launches with minimal latency, and the generous pseudo-SLC cache on larger capacities means burst workloads complete without noticeable slowdowns. The drive uses quality components throughout—Micron 176-layer TLC NAND, Samsung DDR4 DRAM cache, and the proven Silicon Motion SM2264F controller—which inspires confidence for long-term reliability. The 780TB TBW endurance rating per terabyte exceeds industry standard, and the five-year warranty provides adequate coverage for consumer workloads.

Build quality feels appropriate for the price point—the heatsink construction uses solid aluminum with effective fin design, and the overall package demonstrates thoughtful thermal engineering rather than just slapping generic cooling on a drive and calling it a day. ADATA's SSD Toolbox software provides useful monitoring and maintenance features for Windows users, though Mac and PS5 owners miss out on these capabilities.

However, the LEGEND 960 MAX isn't without notable limitations. The most obvious weakness affecting all high-performance Gen 4 drives is pricing that remains stubbornly elevated compared to budget Gen 3 alternatives—the 1TB model typically retails around 75-85 dollars while 2TB hovers in the 145-170 dollar range, versus budget Gen 4 drives at 60-70 dollars for 1TB and 110-130 dollars for 2TB. You're paying a premium for the included heatsink and brand reputation when alternatives like the TeamGroup MP44 or Silicon Power UD90 deliver similar Gen 4 speeds for 15-20 dollars less. The counterargument, of course, is that thermal management matters for sustained workloads and PS5 installations, but value-conscious builders will reasonably question whether the heatsink justifies the price delta.

Real-world performance advantages over cheaper Gen 4 drives prove minimal for typical gaming and productivity workloads—game load times show negligible differences measured in fractions of a second, application launches feel identical, and boot times vary more based on your software configuration than drive speed. Unless you're regularly moving 50-plus GB files or running sustained write workloads that expose thermal throttling on lesser drives, you won't perceive meaningful benefits over drives costing 20-30 percent less.

The permanent adhesive bonding the heatsink to the drive creates installation inflexibility—if you later decide to use your motherboard's integrated M.2 heatsink or need to remove the cooling for any reason, you're facing potential PCB damage from forceful removal. The double-sided component layout prevents use in ultrabooks and compact systems requiring single-sided drives. ADATA's software support excludes Mac and console users from monitoring and maintenance features that could prove useful for tracking drive health.

Market positioning feels slightly awkward—the LEGEND 960 MAX competes directly with the Samsung 990 Pro and WD_BLACK SN850X at similar price points, but those drives enjoy stronger brand recognition and typically receive more aggressive sale pricing. When the 990 Pro 2TB drops to 160 dollars during sales events, ADATA's 2TB at 170 dollars becomes a harder sell despite comparable performance. The real competition isn't between ADATA and other premium brands but rather between paying 140-170 dollars for top-tier Gen 4 performance versus 110-130 dollars for competent budget Gen 4 drives that deliver 95 percent of the experience for 75 percent of the cost.

Verdict: Should You Buy It?

Buy this if: you're building or upgrading a desktop PC with PCIe 4.0 support and run sustained workloads like video rendering, large file transfers, or extended gaming sessions that benefit from consistent thermal performance rather than just peak burst speeds, you're expanding PS5 storage and want a drive that includes proper thermal management without sourcing third-party heatsinks, you value component quality with DRAM cache and proven NAND rather than DRAM-less budget alternatives, you find the 1TB model on sale for 70-75 dollars or 2TB around 140-150 dollars where the price premium over budget alternatives narrows to 10-15 dollars, or you're a content creator moving multi-gigabyte project files regularly enough that sustained write performance matters more than synthetic benchmark bragging rights.

Skip this if: you're running a PCIe 3.0 system where you'd never utilize the Gen 4 speeds you're paying for and should instead buy cheaper Gen 3 drives, you primarily game and don't regularly transfer massive files since you won't perceive meaningful load time differences over budget Gen 4 alternatives costing 20-30 dollars less, you need single-sided construction for ultrabook installation, you're extremely price-sensitive and the 15-20 dollar premium over budget Gen 4 drives like TeamGroup MP44 or Silicon Power UD90 matters more than marginal thermal advantages, your motherboard includes integrated M.2 heatsinks that make the LEGEND 960 MAX's included cooling redundant and you'd prefer buying the non-MAX version without heatsink at lower cost, or you can find the Samsung 990 Pro or WD_BLACK SN850X on sale at equivalent or lower pricing where established brand reputation provides additional confidence.

Advertisement
About
Privacy
Terms
© 2024, 2025 - All Rights Reserved
Brand Logo Icon | DIY SSD